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/fixtures/role_fixtures.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/fixtures/role_fixtures.py')
-rw-r--r-- | tests/unit/auth/fixtures/role_fixtures.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/auth/fixtures/role_fixtures.py b/tests/unit/auth/fixtures/role_fixtures.py index befa6b0..e1e1680 100644 --- a/tests/unit/auth/fixtures/role_fixtures.py +++ b/tests/unit/auth/fixtures/role_fixtures.py @@ -22,7 +22,7 @@ RESOURCE_EDITOR_ROLE = Role( TEST_ROLES = (RESOURCE_READER_ROLE, RESOURCE_EDITOR_ROLE) @pytest.fixture(scope="function") -def fixture_roles(conn_after_auth_migrations): +def fxtr_roles(conn_after_auth_migrations): """Setup some example roles.""" with db.cursor(conn_after_auth_migrations) as cursor: cursor.executemany( |