Merge branch '2.0.x'

This commit is contained in:
Madhura Bhave 2018-08-16 16:44:03 -07:00
commit fe05fed76c

View File

@ -146,8 +146,7 @@ public class SampleActuatorCustomSecurityApplicationTests {
ResponseEntity<Object> entity = beansRestTemplate()
.getForEntity("/actuator/beans", Object.class);
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK);
entity = beansRestTemplate()
.getForEntity("/actuator/beans/", Object.class);
entity = beansRestTemplate().getForEntity("/actuator/beans/", Object.class);
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK);
}