summaryrefslogtreecommitdiff
path: root/tests/integration/test_filesystem.py
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook.git@proton.me>2023-01-01 12:57:26 -0600
committerJordan Cook <jordan.cook.git@proton.me>2023-01-13 14:22:31 -0600
commitd892c2237d28d86edd11004d119a8c94c2efc56d (patch)
tree911e03121980c25eafdd8dbd95a82a2308e85514 /tests/integration/test_filesystem.py
parent87ccbd2a03297121aee5f86d007f929f49ca7a1a (diff)
parent9c4f76744a764f8898e5735d838f929c277821c0 (diff)
downloadrequests-cache-d892c2237d28d86edd11004d119a8c94c2efc56d.tar.gz
Merge pull request #755 from requests-cache/serializer-params
Set default serializers for each backend using param defaults instead of 'default_serializer' class attributes
Diffstat (limited to 'tests/integration/test_filesystem.py')
-rw-r--r--tests/integration/test_filesystem.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/integration/test_filesystem.py b/tests/integration/test_filesystem.py
index dfe9414..99625c4 100644
--- a/tests/integration/test_filesystem.py
+++ b/tests/integration/test_filesystem.py
@@ -39,7 +39,6 @@ class TestFileDict(BaseStorageTest):
rmtree(CACHE_NAME, ignore_errors=True)
def init_cache(self, index=0, clear=True, **kwargs):
- kwargs.setdefault('serializer', 'pickle')
cache = FileDict(f'{CACHE_NAME}_{index}', use_temp=True, **kwargs)
if clear:
cache.clear()