summaryrefslogtreecommitdiff
path: root/tests/test_datastores.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_datastores.py')
-rw-r--r--tests/test_datastores.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_datastores.py b/tests/test_datastores.py
index 658a0f3..9c9a0cf 100644
--- a/tests/test_datastores.py
+++ b/tests/test_datastores.py
@@ -81,7 +81,7 @@ def psycopg2_store() -> DataStore:
engine = create_engine("postgresql+psycopg2://postgres:secret@localhost/testdb")
try:
- yield SQLAlchemyDataStore(engine, start_from_scratch=True)
+ yield SQLAlchemyDataStore(engine, schema="alter", start_from_scratch=True)
finally:
engine.dispose()