add a body to be fully compliant with the http spec

This commit is contained in:
tamo
2021-03-16 11:40:51 +01:00
parent a2ac2de011
commit f6d0689967
2 changed files with 4 additions and 2 deletions

View File

@ -6,6 +6,7 @@ async fn test_healthyness() {
// Check that the server is healthy
let (_response, status_code) = server.get_health().await;
let (response, status_code) = server.get_health().await;
assert_eq!(status_code, 200);
assert_eq!(response["status"], "ok");
}