We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07e6958 commit c5c77c0Copy full SHA for c5c77c0
tests/dragonfly/seeder_test.py
@@ -50,7 +50,7 @@ async def test_seeder_key_target(async_client: aioredis.Redis):
50
s = Seeder(units=len(Seeder.DEFAULT_TYPES) * 2, key_target=5000)
51
52
# Ensure tests are not reasonably slow
53
- async with async_timeout.timeout(1 + 4):
+ async with async_timeout.timeout(10):
54
# Fill with 5k keys, 1% derivation = 50
55
await s.run(async_client, target_deviation=0.01)
56
assert abs(await async_client.dbsize() - 5000) <= 50
0 commit comments