fix(http): commit date & SHA in startup message

This commit is contained in:
Alexey Shekhirin 2021-04-09 09:03:25 +03:00
parent 8df5f73706
commit f87afbc558
No known key found for this signature in database
GPG key ID: AF9A26AA133B5B98
4 changed files with 15 additions and 10 deletions

View file

@ -9,7 +9,7 @@ async fn get_settings_unexisting_index() {
assert_eq!(code, 200);
let version = response.as_object().unwrap();
assert!(version.get("commitSha").is_some());
assert!(version.get("buildDate").is_some());
assert!(version.get("commitDate").is_some());
assert!(version.get("pkgVersion").is_some());
}