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
1 changed files with 2 additions and 2 deletions

View File

@ -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);
} }