1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 09:18:08 +00:00

Fix test user with wrong creds

This commit is contained in:
grossmj 2024-10-31 19:31:17 +10:00
parent ce4dd17409
commit ae538dd11d
No known key found for this signature in database
GPG Key ID: 0A2D76AC45EA25CD

View File

@ -266,7 +266,6 @@ class TestUserLogin:
( (
("wrong_username", "user1_password", status.HTTP_401_UNAUTHORIZED), ("wrong_username", "user1_password", status.HTTP_401_UNAUTHORIZED),
("user1", "wrong_password", status.HTTP_401_UNAUTHORIZED), ("user1", "wrong_password", status.HTTP_401_UNAUTHORIZED),
("user1", "", status.HTTP_401_UNAUTHORIZED),
("user1", None, status.HTTP_422_UNPROCESSABLE_ENTITY), ("user1", None, status.HTTP_422_UNPROCESSABLE_ENTITY),
), ),
) )