Stop test_storage from expiring its cache entry on slow runners (#7993)

This commit is contained in:
Adrian 2026-08-13 11:42:38 +02:00 committed by GitHub
parent be514d8c5d
commit ca48915dd4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ class StorageTestMixin(TestBase):
raise NotImplementedError
def test_storage(self):
with self._storage(HTTPCACHE_EXPIRATION_SECS=1) as (storage, crawler):
with self._storage(HTTPCACHE_EXPIRATION_SECS=100) as (storage, crawler):
request2 = self.request.copy()
assert storage.retrieve_response(crawler.spider, request2) is None