Fix formatting

This commit is contained in:
Madhura Bhave 2019-02-20 18:41:26 -08:00
parent c3e47541ad
commit f8e5b9ba47

View File

@ -59,8 +59,7 @@ public class ManagementPortAndPathSampleActuatorApplicationTests {
@Test
public void actuatorPathOnMainPortShouldNotMatch() {
ResponseEntity<String> entity = new TestRestTemplate().getForEntity(
"http://localhost:" + this.port + "/actuator/health",
String.class);
"http://localhost:" + this.port + "/actuator/health", String.class);
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.UNAUTHORIZED);
}