diff options
author | Frederick Muriuki Muriithi | 2023-02-08 17:24:35 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-02-08 17:44:50 +0300 |
commit | 9b94ec57c504acb6ef815d134144c4c357c71f17 (patch) | |
tree | 3bf1647953956e6abada8344fabeb87ef526e731 /tests | |
parent | 87586bd5270140bf52d39d3dc61c754dd13d4391 (diff) | |
download | genenetwork3-9b94ec57c504acb6ef815d134144c4c357c71f17.tar.gz |
auth: groups: handle join requests.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/auth/test_migrations_create_tables.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/auth/test_migrations_create_tables.py b/tests/unit/auth/test_migrations_create_tables.py index 55d51aa..98022eb 100644 --- a/tests/unit/auth/test_migrations_create_tables.py +++ b/tests/unit/auth/test_migrations_create_tables.py @@ -31,7 +31,8 @@ migrations_and_tables = ( ("20221219_02_buSEU-create-oauth2-tokens-table.py", "oauth2_tokens"), ("20221219_03_PcTrb-create-authorisation-code-table.py", "authorisation_code"), - ("20230207_01_r0bkZ-create-group-requests-table.py", "group_requests")) + ("20230207_01_r0bkZ-create-group-join-requests-table.py", + "group_join_requests")) @pytest.mark.unit_test @pytest.mark.parametrize("migration_file,the_table", migrations_and_tables) |