chore(quality): apply ruff autofixes and formatting (223 fixes, regression-free: 118/118 tests pass)
This commit is contained in:
@@ -22,9 +22,7 @@ async def test_health_no_auth_required(client: AsyncClient) -> None:
|
||||
resp = await client.get("/health")
|
||||
assert resp.status_code == 200, resp.text
|
||||
# Even with a bogus header, it should still be 200 (public endpoint)
|
||||
resp = await client.get(
|
||||
"/health", headers={"Authorization": "Bearer not-a-real-token"}
|
||||
)
|
||||
resp = await client.get("/health", headers={"Authorization": "Bearer not-a-real-token"})
|
||||
assert resp.status_code == 200, resp.text
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user