Skip to content

Commit c7b4a99

Browse files
committed
Fix formatting
1 parent b93c2b9 commit c7b4a99

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spring-boot-samples/spring-boot-sample-actuator-custom-security/src/test/java/sample/actuator/customsecurity/SampleActuatorCustomSecurityApplicationTests.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,7 @@ public void mvcMatchersCanBeUsedToSecureActuators() {
146146
ResponseEntity<Object> entity = beansRestTemplate()
147147
.getForEntity("/actuator/beans", Object.class);
148148
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK);
149-
entity = beansRestTemplate()
150-
.getForEntity("/actuator/beans/", Object.class);
149+
entity = beansRestTemplate().getForEntity("/actuator/beans/", Object.class);
151150
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK);
152151
}
153152

0 commit comments

Comments
 (0)