From b4c25f9131fd3eea47b9ca812d6049995fae017a Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 17 Mar 2021 10:56:37 +0100 Subject: [PATCH] tests/client: increase timeout to wait for process We now get unit test failures hitting this timeout. That is likely a new bug introduced somewhere, but to rule out that the timeout is simply too short, increase it. --- src/tests/client/test-client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/client/test-client.py b/src/tests/client/test-client.py index 287d4f41ac..f9a0f5e758 100755 --- a/src/tests/client/test-client.py +++ b/src/tests/client/test-client.py @@ -575,7 +575,7 @@ class NMStubServer: class AsyncProcess: - def __init__(self, args, env, complete_cb, max_waittime_msec=20000): + def __init__(self, args, env, complete_cb, max_waittime_msec=40000): self._args = list(args) self._env = env self._complete_cb = complete_cb