summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/test_mongodb.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/test_mongodb.py b/tests/integration/test_mongodb.py
index fb56820..4a3a114 100644
--- a/tests/integration/test_mongodb.py
+++ b/tests/integration/test_mongodb.py
@@ -61,9 +61,9 @@ class TestMongoCache(BaseCacheTest):
response = session.get(httpbin('get'))
assert response.from_cache is True
- # Wait up to 60 seconds for removal background process to run
+ # Wait for removal background process to run
# Unfortunately there doesn't seem to be a way to manually trigger it
- for i in range(60):
+ for i in range(70):
if response.cache_key not in session.cache.responses:
logger.debug(f'Removed {response.cache_key} after {i} seconds')
break