Adapt assertion for availability probes being available by default

See gh-22825
This commit is contained in:
Stéphane Nicoll 2025-09-15 12:48:58 +02:00
parent 83ad15ba3b
commit 7ca0323878
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ abstract class AbstractDeploymentTests {
getDeployedApplication().test((rest) -> {
ResponseEntity<String> response = rest.getForEntity("/actuator/health", String.class);
assertThat(response.getStatusCode()).isEqualTo(HttpStatus.OK);
assertThat(response.getBody()).isEqualTo("{\"status\":\"UP\"}");
assertThat(response.getBody()).isEqualTo("{\"groups\":[\"liveness\",\"readiness\"],\"status\":\"UP\"}");
});
}