Skip to content

Commit

Permalink
fix: expected status code
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardSchwarzkopf committed Oct 21, 2024
1 parent f089da1 commit 033327c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/api/test_api_auth.py
Original file line number Diff line number Diff line change
@@ -215,8 +215,8 @@ async def test_login_inactive_user(
("hello123@pytest.de", "wrongPassword", HTTP_400_BAD_REQUEST),
("aaaa", "wrongPassword", HTTP_400_BAD_REQUEST),
("*39goa", "wrongPassword", HTTP_400_BAD_REQUEST),
(None, "wrongPassword", HTTP_422_UNPROCESSABLE_ENTITY),
("wrongemail@gmail.com", None, HTTP_422_UNPROCESSABLE_ENTITY),
(None, "wrongPassword", HTTP_400_BAD_REQUEST),
("wrongemail@gmail.com", None, HTTP_400_BAD_REQUEST),
],
)
async def test_invalid_login_inactive_user(

0 comments on commit 033327c

Please sign in to comment.