diff options
author | Frederick Muriuki Muriithi | 2023-09-15 08:38:47 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-09-26 03:44:31 +0300 |
commit | f6566c76d97cb44d47cc491f13e1342f0c2555cf (patch) | |
tree | d46f8d05cfd78ddda1f0549e65dc07ae233d2f7e /tests/unit/auth/fixtures/migration_fixtures.py | |
parent | e19b01571ce61e01f482a1dadeeb2fd835fda939 (diff) | |
download | gn-auth-f6566c76d97cb44d47cc491f13e1342f0c2555cf.tar.gz |
Update `user_roles`: Return roles for user by resource.
Diffstat (limited to 'tests/unit/auth/fixtures/migration_fixtures.py')
-rw-r--r-- | tests/unit/auth/fixtures/migration_fixtures.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/unit/auth/fixtures/migration_fixtures.py b/tests/unit/auth/fixtures/migration_fixtures.py index 16a31cd..954b5a9 100644 --- a/tests/unit/auth/fixtures/migration_fixtures.py +++ b/tests/unit/auth/fixtures/migration_fixtures.py @@ -40,6 +40,11 @@ def conn_after_auth_migrations(backend, auth_testdb_path, all_migrations): # pyl """Run all migrations and return a connection to the database after""" apply_migrations(backend, all_migrations) with db.connection(auth_testdb_path) as conn: + with db.cursor(conn) as cursor: + cursor.execute( + "UPDATE resources " + "SET resource_id='0248b289-b277-4eaa-8c94-88a434d14b6e' " + "WHERE resource_name='GeneNetwork System'") yield conn rollback_migrations(backend, all_migrations) |