From 191ff51859250f55d381ca712af67d824d0c9cc4 Mon Sep 17 00:00:00 2001 From: Dmitry Polienko Date: Tue, 13 Sep 2016 02:40:48 -0700 Subject: [PATCH] Fix tasyncsend4757 test (Linux) --- tests/async/tasyncsend4757.nim | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/async/tasyncsend4757.nim b/tests/async/tasyncsend4757.nim index 2ae4a6151d..1066f38e56 100644 --- a/tests/async/tasyncsend4757.nim +++ b/tests/async/tasyncsend4757.nim @@ -11,6 +11,4 @@ proc f(): Future[void] {.async.} = await s.send("123") echo "Finished" -asyncCheck f() - -poll(1000) +waitFor f()