From 23b377e1a1f8d9be00430c4805b1829ee3026a48 Mon Sep 17 00:00:00 2001 From: Madhura Bhave Date: Tue, 13 Jul 2021 15:18:17 -0700 Subject: [PATCH] Fix typo --- .../endpoint/web/WebOperationRequestPredicateTests.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/WebOperationRequestPredicateTests.java b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/WebOperationRequestPredicateTests.java index 9ce6f80d419..d2efcadbc3d 100644 --- a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/WebOperationRequestPredicateTests.java +++ b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/WebOperationRequestPredicateTests.java @@ -51,22 +51,22 @@ class WebOperationRequestPredicateTests { } @Test - void predicatesWithSinglePathVariablesInTheSamplePlaceAreEqual() { + void predicatesWithSinglePathVariablesInTheSamePlaceAreEqual() { assertThat(predicateWithPath("/path/{foo1}")).isEqualTo(predicateWithPath("/path/{foo2}")); } @Test - void predicatesWithSingleWildcardPathVariablesInTheSamplePlaceAreEqual() { + void predicatesWithSingleWildcardPathVariablesInTheSamePlaceAreEqual() { assertThat(predicateWithPath("/path/{*foo1}")).isEqualTo(predicateWithPath("/path/{*foo2}")); } @Test - void predicatesWithSingleWildcardPathVariableAndRegularVariableInTheSamplePlaceAreNotEqual() { + void predicatesWithSingleWildcardPathVariableAndRegularVariableInTheSamePlaceAreNotEqual() { assertThat(predicateWithPath("/path/{*foo1}")).isNotEqualTo(predicateWithPath("/path/{foo2}")); } @Test - void predicatesWithMultiplePathVariablesInTheSamplePlaceAreEqual() { + void predicatesWithMultiplePathVariablesInTheSamePlaceAreEqual() { assertThat(predicateWithPath("/path/{foo1}/more/{bar1}")) .isEqualTo(predicateWithPath("/path/{foo2}/more/{bar2}")); }