See gh-13243
This commit is contained in:
Johnny Lim
2018-05-24 00:01:19 +09:00
committed by Stephane Nicoll
parent f91b53747a
commit de01e7aad4
6 changed files with 9 additions and 10 deletions

View File

@@ -46,7 +46,7 @@ public class HealthWebEndpointResponseMapperTests {
private final HealthStatusHttpMapper statusHttpMapper = new HealthStatusHttpMapper();
private Set<String> autorizedRoles = Collections.singleton("ACTUATOR");
private Set<String> authorizedRoles = Collections.singleton("ACTUATOR");
@Test
public void mapDetailsWithDisableDetailsDoesNotInvokeSupplier() {
@@ -122,7 +122,7 @@ public class HealthWebEndpointResponseMapperTests {
private HealthWebEndpointResponseMapper createMapper(ShowDetails showDetails) {
return new HealthWebEndpointResponseMapper(this.statusHttpMapper, showDetails,
this.autorizedRoles);
this.authorizedRoles);
}
}