Fix typo in CertificateMatchingTestSource class
See gh-40822
This commit is contained in:
parent
967b992137
commit
092e921433
|
|
@ -82,10 +82,10 @@ record CertificateMatchingTestSource(CertificateMatchingTestSource.Algorithm alg
|
||||||
keyPairs.put(algorithm, algorithm.generateKeyPair());
|
keyPairs.put(algorithm, algorithm.generateKeyPair());
|
||||||
}
|
}
|
||||||
List<CertificateMatchingTestSource> parameters = new ArrayList<>();
|
List<CertificateMatchingTestSource> parameters = new ArrayList<>();
|
||||||
keyPairs.forEach((algorith, matchingKeyPair) -> {
|
keyPairs.forEach((algorithm, matchingKeyPair) -> {
|
||||||
List<KeyPair> nonMatchingKeyPairs = new ArrayList<>(keyPairs.values());
|
List<KeyPair> nonMatchingKeyPairs = new ArrayList<>(keyPairs.values());
|
||||||
nonMatchingKeyPairs.remove(matchingKeyPair);
|
nonMatchingKeyPairs.remove(matchingKeyPair);
|
||||||
parameters.add(new CertificateMatchingTestSource(algorith, matchingKeyPair, nonMatchingKeyPairs));
|
parameters.add(new CertificateMatchingTestSource(algorithm, matchingKeyPair, nonMatchingKeyPairs));
|
||||||
});
|
});
|
||||||
return List.copyOf(parameters);
|
return List.copyOf(parameters);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue