We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 668e76a commit d2bf874Copy full SHA for d2bf874
tests/test_litestar_bootstrap.py
@@ -42,8 +42,8 @@ def test_litestar_bootstrap(service_config: ServiceConfig) -> None:
42
logger.info("testing logging", key="value")
43
44
try:
45
- with TestClient(app=application) as async_client:
46
- response = async_client.get("/health/")
+ with TestClient(app=application) as test_client:
+ response = test_client.get("/health/")
47
assert response.status_code == status_codes.HTTP_200_OK
48
assert response.json() == {
49
"health_status": True,
0 commit comments