diff --git a/tests/test_app.py b/tests/test_app.py index ff40e44b6..fa124e97f 100644 --- a/tests/test_app.py +++ b/tests/test_app.py @@ -38,9 +38,3 @@ def test_url(url: str, params: dict[str, str], timeout: int) -> None: continue break assert response.status_code == 200, response.text - - -def test_admin() -> None: - """Tests that the admin page will provide the login page.""" - response = requests.get("https://front/admin/", verify=False, timeout=30) # nosec - assert response.status_code == 200, response.text