test(huey): make timeout more so that vm gets it in time

This commit is contained in:
Houkime 2024-03-20 09:02:10 +00:00
parent 6f38b2309f
commit 9ee72c1fcb
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ def test_huey_over_redis_socket(huey_socket_consumer):
result = sum(2, 5)
try:
assert result(blocking=True, timeout=10) == 7
assert result(blocking=True, timeout=100) == 7
except HueyException as error:
if "timed out" in str(error):