diff options
author | Frederick Muriuki Muriithi | 2022-11-08 13:53:26 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-11-08 13:53:26 +0300 |
commit | 05efabdfa2086960e51c1fbbff1ab86f227d8453 (patch) | |
tree | 3171d1f1fde3d9121624e24bb994bb73b8570375 /tests | |
parent | dbd3b240811cb095bc87136501ee846f7b0cb42b (diff) | |
download | genenetwork3-05efabdfa2086960e51c1fbbff1ab86f227d8453.tar.gz |
Tests: Fix typo: remove variable from quotes.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/auth/test_create_table_migrations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/auth/test_create_table_migrations.py b/tests/unit/auth/test_create_table_migrations.py index 8bc8fe1..dafc821 100644 --- a/tests/unit/auth/test_create_table_migrations.py +++ b/tests/unit/auth/test_create_table_migrations.py @@ -56,6 +56,6 @@ def test_rollback_create_table( assert the_table in [row[0] for row in cursor.fetchall()] rollback_single_migration(auth_testdb_path, get_migration(migration_path)) cursor.execute("SELECT name FROM sqlite_schema WHERE type='table'") - assert "the_table" not in [row[0] for row in cursor.fetchall()] + assert the_table not in [row[0] for row in cursor.fetchall()] rollback_migrations(backend, older_migrations) |