From 83553ee504b9fa635434921db2830165e76f0bc2 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Sun, 19 Apr 2020 16:51:59 -0700 Subject: [PATCH] Fix test checkstyle issues Fix checkstyle issues from forward merge. See gh-21022 --- .../endpoint/ExposeExcludePropertyEndpointFilterTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/ExposeExcludePropertyEndpointFilterTests.java b/spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/ExposeExcludePropertyEndpointFilterTests.java index 4f35026389..d4a9a6b034 100644 --- a/spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/ExposeExcludePropertyEndpointFilterTests.java +++ b/spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/ExposeExcludePropertyEndpointFilterTests.java @@ -148,7 +148,7 @@ class ExposeExcludePropertyEndpointFilterTests { } @Test // gh-20997 - public void matchWhenDashInName() throws Exception { + void matchWhenDashInName() throws Exception { setupFilter("bus-refresh", ""); assertThat(match(EndpointId.of("bus-refresh"))).isTrue(); }