diff options
author | Frederick Muriuki Muriithi | 2023-01-03 05:49:53 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-01-03 06:16:28 +0300 |
commit | da33d719105d67afb1ee6b040380211cfa8be23d (patch) | |
tree | 825d77283b578c60058afba12fc786df4704d20e /tests/unit/auth/test_privileges.py | |
parent | 27647b38fe1b183010d4c49bce5aa22ea2bb3f48 (diff) | |
download | genenetwork3-da33d719105d67afb1ee6b040380211cfa8be23d.tar.gz |
auth: rename fixtures: test_* -> fxtr_*
Since test functions are defined starting with "test_", rename the fixture to
more clearly indicate it is a fixture (fxtr_*), an not a test in itself.
Diffstat (limited to 'tests/unit/auth/test_privileges.py')
-rw-r--r-- | tests/unit/auth/test_privileges.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/auth/test_privileges.py b/tests/unit/auth/test_privileges.py index 3586e90..1c2ba24 100644 --- a/tests/unit/auth/test_privileges.py +++ b/tests/unit/auth/test_privileges.py @@ -37,7 +37,7 @@ PRIVILEGES = sorted( @pytest.mark.parametrize( "user,expected", tuple(zip( conftest.TEST_USERS, (PRIVILEGES, [], [], [], [])))) -def test_user_privileges(auth_testdb_path, test_users, user, expected):# pylint: disable=[unused-argument] +def test_user_privileges(auth_testdb_path, fxtr_users, user, expected):# pylint: disable=[unused-argument] """ GIVEN: A user WHEN: An attempt is made to fetch the user's privileges |