We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e21a6e commit b9eb687Copy full SHA for b9eb687
1 file changed
api/tests/test_api_smoke.py
@@ -1,4 +1,3 @@
1
-
2
"""
3
Basic smoke tests for the API service.
4
These run in GitHub Actions on every push — no local setup needed.
@@ -106,6 +105,6 @@ def test_health_endpoint(self):
106
105
107
client = TestClient(app)
108
response = client.get("/health")
109
- assert response.status_code == 200, (
110
- f"GET /health returned {response.status_code} — add a /health endpoint"
111
- )
+ assert (
+ response.status_code == 200
+ ), f"GET /health returned {response.status_code} — add a /health endpoint"
0 commit comments