From e49bcf6ba6f77e2ab3ec487644b29f5468e8260e Mon Sep 17 00:00:00 2001 From: agent Date: Thu, 17 Sep 2026 12:05:55 +0300 Subject: [PATCH] test: update deploy version expectation --- tests/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_api.py b/tests/test_api.py index 5ed3888..e557d18 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -18,7 +18,7 @@ def test_health_returns_versions(): response = TestClient(app).get("/api/health") assert response.status_code == 200 - assert response.json()["backend_version"] == "0.8.14" + assert response.json()["backend_version"] == "0.8.15" def test_api_employees_and_stats_require_admin_session():