Fix typo in CertificateMatchingTestSource class

See gh-40822
This commit is contained in:
Piyal Ahmed 2024-05-19 17:29:38 +06:00 committed by Andy Wilkinson
parent 967b992137
commit 092e921433

View File

@ -82,10 +82,10 @@ record CertificateMatchingTestSource(CertificateMatchingTestSource.Algorithm alg
keyPairs.put(algorithm, algorithm.generateKeyPair());
}
List<CertificateMatchingTestSource> parameters = new ArrayList<>();
keyPairs.forEach((algorith, matchingKeyPair) -> {
keyPairs.forEach((algorithm, matchingKeyPair) -> {
List<KeyPair> nonMatchingKeyPairs = new ArrayList<>(keyPairs.values());
nonMatchingKeyPairs.remove(matchingKeyPair);
parameters.add(new CertificateMatchingTestSource(algorith, matchingKeyPair, nonMatchingKeyPairs));
parameters.add(new CertificateMatchingTestSource(algorithm, matchingKeyPair, nonMatchingKeyPairs));
});
return List.copyOf(parameters);
}