From b72c489f4e81184c7163cb35744b76fa0321fb70 Mon Sep 17 00:00:00 2001 From: Kevin Mai-Husan Chia Date: Wed, 4 Sep 2019 20:36:42 +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 5b8c791..607ec3a 100644 --- a/tests/interop/daemon.py +++ b/tests/interop/daemon.py @@ -30,7 +30,7 @@ async def try_until_success(coro_func, timeout=TIMEOUT_DURATION): break if (time.monotonic() - t_start) >= timeout: # timeout - assert False, f"{coro_func} still failed after `{timeout}` seconds" + assert False, f"{coro_func} is still failing after `{timeout}` seconds" await asyncio.sleep(0.01)