summaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2022-04-17 13:49:34 -0500
committerJordan Cook <jordan.cook@pioneer.com>2022-04-17 19:25:20 -0500
commit7ebf9df7ae2534bad66dc4f102993f5fb6d789b2 (patch)
tree91fb12d84ea6a39fb46fd865baec32a283b9e51b /tests/integration
parent451b5dfca5b3c60dd52098902ce37125d4a1a45f (diff)
downloadrequests-cache-7ebf9df7ae2534bad66dc4f102993f5fb6d789b2.tar.gz
Move all cache policy-related modules to separate 'policy' subpackage
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/test_mongodb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/test_mongodb.py b/tests/integration/test_mongodb.py
index ecec6c6..67e7d75 100644
--- a/tests/integration/test_mongodb.py
+++ b/tests/integration/test_mongodb.py
@@ -15,7 +15,7 @@ from requests_cache.backends import (
MongoDict,
MongoPickleDict,
)
-from requests_cache.expiration import NEVER_EXPIRE
+from requests_cache.policy.expiration import NEVER_EXPIRE
from requests_cache.serializers import bson_document_serializer
from tests.conftest import HTTPBIN_FORMATS, HTTPBIN_METHODS, fail_if_no_connection, httpbin
from tests.integration.base_cache_test import TEST_SERIALIZERS, BaseCacheTest