From 092e92143380a17cc444440a9cb33f93dfd49896 Mon Sep 17 00:00:00 2001 From: Piyal Ahmed Date: Sun, 19 May 2024 17:29:38 +0600 Subject: [PATCH] Fix typo in CertificateMatchingTestSource class See gh-40822 --- .../boot/autoconfigure/ssl/CertificateMatchingTestSource.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/ssl/CertificateMatchingTestSource.java b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/ssl/CertificateMatchingTestSource.java index e04f5651fa0..dd7fb741ab4 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/ssl/CertificateMatchingTestSource.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/ssl/CertificateMatchingTestSource.java @@ -82,10 +82,10 @@ record CertificateMatchingTestSource(CertificateMatchingTestSource.Algorithm alg keyPairs.put(algorithm, algorithm.generateKeyPair()); } List parameters = new ArrayList<>(); - keyPairs.forEach((algorith, matchingKeyPair) -> { + keyPairs.forEach((algorithm, matchingKeyPair) -> { List 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); }