follow the IBM convention

This commit is contained in:
tamo 2021-03-16 14:02:14 +01:00
parent f6d0689967
commit 018cadc598
No known key found for this signature in database
GPG key ID: 7A6A970C96104F1B
2 changed files with 2 additions and 2 deletions

View file

@ -8,5 +8,5 @@ async fn test_healthyness() {
let (response, status_code) = server.get_health().await;
assert_eq!(status_code, 200);
assert_eq!(response["status"], "ok");
assert_eq!(response["status"], "available");
}