aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/auth/test_migrations_create_tables.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/auth/test_migrations_create_tables.py')
-rw-r--r--tests/unit/auth/test_migrations_create_tables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/auth/test_migrations_create_tables.py b/tests/unit/auth/test_migrations_create_tables.py
index f56489a..bd0164e 100644
--- a/tests/unit/auth/test_migrations_create_tables.py
+++ b/tests/unit/auth/test_migrations_create_tables.py
@@ -1,7 +1,7 @@
"""Test migrations that create tables"""
import pytest
-from gn_auth.auth import db
+from gn_auth.auth.db import sqlite3 as db
from gn_auth.migrations import get_migration, apply_migrations, rollback_migrations
from tests.unit.auth.conftest import (
apply_single_migration, rollback_single_migration, migrations_up_to)