diff options
author | Frederick Muriuki Muriithi | 2023-02-07 13:00:56 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-02-07 13:01:27 +0300 |
commit | 87586bd5270140bf52d39d3dc61c754dd13d4391 (patch) | |
tree | 86e4c36ce0fc3334bfbf6d421efb070dd5f3cfd2 /tests | |
parent | 3cc5e7b57b0ca9bd5143d746022cb69349023a68 (diff) | |
download | genenetwork3-87586bd5270140bf52d39d3dc61c754dd13d4391.tar.gz |
auth: groups: Enable users to request to join group.
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 0fda718..55d51aa 100644 --- a/tests/unit/auth/test_migrations_create_tables.py +++ b/tests/unit/auth/test_migrations_create_tables.py @@ -30,7 +30,8 @@ migrations_and_tables = ( ("20221219_01_CI3tN-create-oauth2-clients-table.py", "oauth2_clients"), ("20221219_02_buSEU-create-oauth2-tokens-table.py", "oauth2_tokens"), ("20221219_03_PcTrb-create-authorisation-code-table.py", - "authorisation_code")) + "authorisation_code"), + ("20230207_01_r0bkZ-create-group-requests-table.py", "group_requests")) @pytest.mark.unit_test @pytest.mark.parametrize("migration_file,the_table", migrations_and_tables) |