lint and format

This commit is contained in:
Jakub Miazek
2023-07-24 19:29:31 +02:00
parent 2fb3035709
commit f77ab40352
4 changed files with 8 additions and 10 deletions

View File

@@ -4,8 +4,9 @@ from httpx import AsyncClient
pytestmark = pytest.mark.anyio
async def test_redis_health(client: AsyncClient):
response = await client.get(f"/public/health/redis")
response = await client.get("/public/health/redis")
assert response.status_code == status.HTTP_200_OK
# assert payload["name"] == response.json()["name"]
# assert UUID(response.json()["id"])