diff --git a/tests/test_app.py b/tests/test_app.py index d77357a..4361dae 100644 --- a/tests/test_app.py +++ b/tests/test_app.py @@ -1,4 +1,4 @@ -def test_root(testapp): +def test_login_required(testapp): response = testapp.get("/", status=200) assert b"Sambal Login" in response.body