mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2025-01-22 08:46:37 +00:00
test(huey): make timeout more so that vm gets it in time
This commit is contained in:
parent
6f38b2309f
commit
9ee72c1fcb
|
@ -106,7 +106,7 @@ def test_huey_over_redis_socket(huey_socket_consumer):
|
||||||
|
|
||||||
result = sum(2, 5)
|
result = sum(2, 5)
|
||||||
try:
|
try:
|
||||||
assert result(blocking=True, timeout=10) == 7
|
assert result(blocking=True, timeout=100) == 7
|
||||||
|
|
||||||
except HueyException as error:
|
except HueyException as error:
|
||||||
if "timed out" in str(error):
|
if "timed out" in str(error):
|
||||||
|
|
Loading…
Reference in a new issue