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