From 155f523c9f2f553092f8e8e967e6c191b3a02edf Mon Sep 17 00:00:00 2001 From: Kevin Mai-Husan Chia Date: Wed, 4 Sep 2019 20:33:50 +0800 Subject: [PATCH] Update tests/interop/daemon.py Co-Authored-By: NIC Lin --- tests/interop/daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/interop/daemon.py b/tests/interop/daemon.py index 9739189..4c133cd 100644 --- a/tests/interop/daemon.py +++ b/tests/interop/daemon.py @@ -20,7 +20,7 @@ TIMEOUT_DURATION = 30 async def try_until_success(coro_func, timeout=TIMEOUT_DURATION): """ - Keep running ``coro_func`` until the time is out. + Keep running ``coro_func`` until either it succeed or time is up. All arguments of ``coro_func`` should be filled, i.e. it should be called without arguments. """ t_start = time.monotonic()