diff --git a/tests/test_health.py b/tests/test_health.py index 4e7c866..29e6248 100644 --- a/tests/test_health.py +++ b/tests/test_health.py @@ -3,5 +3,5 @@ from fastapi import APIRouter router = APIRouter() @router.get("/health") -async def read_health(): +async def test_health_check(): return {"status": "ok"} \ No newline at end of file