From ae538dd11dc159bdf4b917a687c2f53ff1fbe7cb Mon Sep 17 00:00:00 2001 From: grossmj Date: Thu, 31 Oct 2024 19:31:17 +1000 Subject: [PATCH] Fix test user with wrong creds --- tests/api/routes/controller/test_users.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/api/routes/controller/test_users.py b/tests/api/routes/controller/test_users.py index 9a9b51ae..88df89d9 100644 --- a/tests/api/routes/controller/test_users.py +++ b/tests/api/routes/controller/test_users.py @@ -266,7 +266,6 @@ class TestUserLogin: ( ("wrong_username", "user1_password", status.HTTP_401_UNAUTHORIZED), ("user1", "wrong_password", status.HTTP_401_UNAUTHORIZED), - ("user1", "", status.HTTP_401_UNAUTHORIZED), ("user1", None, status.HTTP_422_UNPROCESSABLE_ENTITY), ), )