summaryrefslogtreecommitdiff
path: root/tests/integration/test_sqlite.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/test_sqlite.py')
-rw-r--r--tests/integration/test_sqlite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/test_sqlite.py b/tests/integration/test_sqlite.py
index af94610..04e4b61 100644
--- a/tests/integration/test_sqlite.py
+++ b/tests/integration/test_sqlite.py
@@ -32,7 +32,7 @@ class TestSQLiteDict(BaseStorageTest):
def test_connection_kwargs(self, mock_sqlite):
"""A spot check to make sure optional connection kwargs gets passed to connection"""
cache = self.storage_class('test', use_temp=True, timeout=0.5, invalid_kwarg='???')
- mock_sqlite.connect.assert_called_with(cache.db_path, timeout=0.5)
+ mock_sqlite.connect.assert_called_with(cache.db_path, timeout=0.5, check_same_thread=False)
def test_use_cache_dir(self):
relative_path = self.storage_class(CACHE_NAME).db_path