Skip to content

Commit

Permalink
tests: rename test_root to test_login_required
Browse files Browse the repository at this point in the history
it's not a realistic test anyway, but test_root is wrong and says nothing
  • Loading branch information
robvdl committed Mar 7, 2024
1 parent ca2533f commit 404e7e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_app.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 404e7e8

Please sign in to comment.