Browse Source

Fix checkstyle errors in SampleReactiveOAuth2ClientApplicationTests

See gh-18351
pull/18351/merge
dreis2211 6 years ago committed by Andy Wilkinson
parent
commit
de6c38398e
  1. 2
      spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-reactive-oauth2-client/src/test/java/smoketest/oauth2/client/SampleReactiveOAuth2ClientApplicationTests.java

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

Loading…
Cancel
Save