From de6c38398e4edb91fa9931848b5fb6beaa3066a2 Mon Sep 17 00:00:00 2001 From: dreis2211 Date: Wed, 25 Sep 2019 13:10:16 +0200 Subject: [PATCH] Fix checkstyle errors in SampleReactiveOAuth2ClientApplicationTests See gh-18351 --- .../client/SampleReactiveOAuth2ClientApplicationTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-reactive-oauth2-client/src/test/java/smoketest/oauth2/client/SampleReactiveOAuth2ClientApplicationTests.java b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-reactive-oauth2-client/src/test/java/smoketest/oauth2/client/SampleReactiveOAuth2ClientApplicationTests.java index ee52837c67..2b170de1ba 100644 --- a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-reactive-oauth2-client/src/test/java/smoketest/oauth2/client/SampleReactiveOAuth2ClientApplicationTests.java +++ b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-reactive-oauth2-client/src/test/java/smoketest/oauth2/client/SampleReactiveOAuth2ClientApplicationTests.java @@ -49,7 +49,7 @@ class SampleReactiveOAuth2ClientApplicationTests { } @Test - public void actuatorShouldBeSecuredByOAuth() { + void actuatorShouldBeSecuredByOAuth() { this.webTestClient.get().uri("/actuator/health").exchange().expectStatus().isFound().expectHeader() .valueEquals("Location", "/login"); }