aboutsummaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-11-08 13:53:26 +0300
committerFrederick Muriuki Muriithi2022-11-08 13:53:26 +0300
commit05efabdfa2086960e51c1fbbff1ab86f227d8453 (patch)
tree3171d1f1fde3d9121624e24bb994bb73b8570375 /tests/unit
parentdbd3b240811cb095bc87136501ee846f7b0cb42b (diff)
downloadgenenetwork3-05efabdfa2086960e51c1fbbff1ab86f227d8453.tar.gz
Tests: Fix typo: remove variable from quotes.
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/auth/test_create_table_migrations.py2
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)