Skip to content

Commit 8c0c23d

Browse files
committed
remove staff from test case
1 parent 39b4b1d commit 8c0c23d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/account/validators_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class TestUserExists:
9191
def test_not_exists(self, username):
9292
assert not user_exists(username)
9393

94-
@pytest.mark.parametrize('username', ['guser', 'staff', 'root', 'sshd'])
94+
@pytest.mark.parametrize('username', ['guser', 'root', 'sshd'])
9595
def test_exists(self, username):
9696
assert user_exists(username)
9797

0 commit comments

Comments
 (0)