diff options
author | Dmitry Polienko <dmitry@eldis.ru> | 2016-09-13 02:40:48 -0700 |
---|---|---|
committer | Dmitry Polienko <dmitry@eldis.ru> | 2016-09-13 02:40:48 -0700 |
commit | 191ff51859250f55d381ca712af67d824d0c9cc4 (patch) | |
tree | 161bdab1f0f3a62256a482fbc8c084a5dd2be966 /tests/async | |
parent | a2a5985a2dd47ed591b6a6617650a530ce3cd23d (diff) | |
download | Nim-191ff51859250f55d381ca712af67d824d0c9cc4.tar.gz |
Fix tasyncsend4757 test (Linux)
Diffstat (limited to 'tests/async')
-rw-r--r-- | tests/async/tasyncsend4757.nim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/async/tasyncsend4757.nim b/tests/async/tasyncsend4757.nim index 2ae4a6151..1066f38e5 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() |