summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2022-09-12 22:48:45 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2022-09-12 22:48:45 +0300
commit49344e6954559259beb336436a45698d62eed5b4 (patch)
tree8c0e42e95f9846b9bf1c854f1bd94e10de35f9e9 /tests
parent9b72c6171741fc9492c0a468d40829c8118e61b0 (diff)
downloadapscheduler-49344e6954559259beb336436a45698d62eed5b4.tar.gz
Fixed schema parameter in SQLAlchemyJobStore not being used
Fixes #664.
Diffstat (limited to 'tests')
-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()