aboutsummaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
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)