From 4ee434c8dbc83cc977a478589c5ed7480fa43542 Mon Sep 17 00:00:00 2001 From: "backend.im" Date: Sat, 15 Mar 2025 01:56:57 +0000 Subject: [PATCH] Update tests/test_health.py --- tests/test_health.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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