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.
This commit is contained in:
Thomas Haller 2021-03-17 10:56:37 +01:00
parent 0f8fe3c76b
commit b4c25f9131
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728

View file

@ -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