Skip to content

Commit

Permalink
[ISSUE-5705] Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
seonWKim committed Jun 13, 2024
1 parent e89de57 commit 52fdd7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ void hello() throws Exception {
void healthCheck() throws Exception {
final AggregatedHttpResponse res = client.get("/internal/healthcheck").aggregate().join();
assertThat(res.status()).isEqualTo(HttpStatus.OK);
assertThat(res.contentUtf8()).isEqualTo("{\"healthy\":true}");
assertThat(res.contentUtf8()).isEqualTo("{\"healthy\":true,\"status\":\"HEALTHY\"}");
}
}

0 comments on commit 52fdd7b

Please sign in to comment.