Update tests/test_health.py

This commit is contained in:
backend.im 2025-03-15 01:56:57 +00:00
parent 486a4a2503
commit 4ee434c8db

View File

@ -3,5 +3,5 @@ from fastapi import APIRouter
router = APIRouter() router = APIRouter()
@router.get("/health") @router.get("/health")
async def read_health(): async def test_health_check():
return {"status": "ok"} return {"status": "ok"}