Skip to content

Commit c5c77c0

Browse files
authored
fix: timeout for test_seeder_key_target (#5198)
1 parent 07e6958 commit c5c77c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/dragonfly/seeder_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ async def test_seeder_key_target(async_client: aioredis.Redis):
5050
s = Seeder(units=len(Seeder.DEFAULT_TYPES) * 2, key_target=5000)
5151

5252
# Ensure tests are not reasonably slow
53-
async with async_timeout.timeout(1 + 4):
53+
async with async_timeout.timeout(10):
5454
# Fill with 5k keys, 1% derivation = 50
5555
await s.run(async_client, target_deviation=0.01)
5656
assert abs(await async_client.dbsize() - 5000) <= 50

0 commit comments

Comments
 (0)