Add missing tests

This commit is contained in:
Christian Dupuis
2014-05-08 16:58:52 +02:00
parent dfd6f91aef
commit c38f9bcdfa
5 changed files with 5 additions and 5 deletions

View File

@@ -75,7 +75,7 @@ public class SampleActuatorUiApplicationPortTests {
ResponseEntity<String> entity = new TestRestTemplate().getForEntity(
"http://localhost:" + this.managementPort + "/health", String.class);
assertEquals(HttpStatus.OK, entity.getStatusCode());
assertEquals("ok", entity.getBody());
assertEquals("{\"status\":\"ok\"}", entity.getBody());
}
}