aboutsummaryrefslogtreecommitdiff
path: root/tests/http/test_basic.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/http/test_basic.py')
-rw-r--r--tests/http/test_basic.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/http/test_basic.py b/tests/http/test_basic.py
index 7b03a1e..18359da 100644
--- a/tests/http/test_basic.py
+++ b/tests/http/test_basic.py
@@ -22,14 +22,3 @@ async def test_static_file_alias(httpxclient: AsyncClient):
res = await client.get(p)
assert res.status_code == 200, p
assert res.json() == {}
-
-
-@pytest.mark.anyio
-async def test_health(httpxclient: AsyncClient):
- client = httpxclient
- """
- These are here for site crawlers and stuff..
- """
- res = await client.get("/health/")
- assert res.status_code == 200
- assert res.json() == {}