Skip to content

Commit

Permalink
Add test case where target user role is None.
Browse files Browse the repository at this point in the history
  • Loading branch information
janjagusch committed Sep 28, 2023
1 parent 77c8031 commit 938462b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions quetz/tests/api/test_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def test_validate_user_role_names(user, client, other_user, db):
("other", "owner", "member", 200),
("other", "owner", "maintainer", 200),
("other", "owner", "owner", 200),
("other", "owner", None, 200),
("missing_user", "owner", "member", 404),
],
)
Expand Down

0 comments on commit 938462b

Please sign in to comment.