Merge branch '2.0.x'
This commit is contained in:
commit
fe05fed76c
|
@ -146,8 +146,7 @@ public class SampleActuatorCustomSecurityApplicationTests {
|
||||||
ResponseEntity<Object> entity = beansRestTemplate()
|
ResponseEntity<Object> entity = beansRestTemplate()
|
||||||
.getForEntity("/actuator/beans", Object.class);
|
.getForEntity("/actuator/beans", Object.class);
|
||||||
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK);
|
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK);
|
||||||
entity = beansRestTemplate()
|
entity = beansRestTemplate().getForEntity("/actuator/beans/", Object.class);
|
||||||
.getForEntity("/actuator/beans/", Object.class);
|
|
||||||
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK);
|
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue