aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_db.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_db.py')
-rw-r--r--tests/test_db.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_db.py b/tests/test_db.py
index 5c973ab..e036d33 100644
--- a/tests/test_db.py
+++ b/tests/test_db.py
@@ -5,13 +5,13 @@ from paste import db
@pytest.fixture
def unmigrated_conn():
- with db.connect(":memory:", migrations=None) as conn:
+ with db.connect("file::memory:", migrations=None) as conn:
yield conn
@pytest.fixture
def conn():
- with db.connect(":memory:") as conn:
+ with db.connect("file::memory:") as conn:
yield conn