Skip to content

Commit b9eb687

Browse files
Santhosh-p653github-actions[bot]
authored andcommitted
style: auto-format api/ with black & isort [skip ci]
1 parent 0e21a6e commit b9eb687

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

api/tests/test_api_smoke.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
"""
32
Basic smoke tests for the API service.
43
These run in GitHub Actions on every push — no local setup needed.
@@ -106,6 +105,6 @@ def test_health_endpoint(self):
106105

107106
client = TestClient(app)
108107
response = client.get("/health")
109-
assert response.status_code == 200, (
110-
f"GET /health returned {response.status_code} — add a /health endpoint"
111-
)
108+
assert (
109+
response.status_code == 200
110+
), f"GET /health returned {response.status_code} — add a /health endpoint"

0 commit comments

Comments
 (0)