fix(test): adapt health check assertion to Phase 4 status value change

This commit is contained in:
chiguyong 2026-06-06 21:56:30 +08:00
parent 6e362a8ae7
commit 468dfd71e8
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ class TestFullFlow:
response = client.get("/api/v1/health")
assert response.status_code == 200
data = response.json()
assert data["status"] == "ok"
assert data["status"] in ("ok", "healthy")
def test_llm_usage_after_tasks(self, client):
"""LLM usage stats available after task execution"""