diff options
author | Miran <narimiran@users.noreply.github.com> | 2018-10-17 19:46:42 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-10-17 19:46:42 +0200 |
commit | 95504caa31df4cb4e86b03fd38d729b2ddb1d439 (patch) | |
tree | 13282df544a279c16dd31fa63751645431ed562e /tests/async | |
parent | 81e33b9d874cd400d61b0e9df21e7367ea430dc3 (diff) | |
download | Nim-95504caa31df4cb4e86b03fd38d729b2ddb1d439.tar.gz |
make some tests faster (#9413)
* remove duplicated slow test * smaller `convex hull` * smaller sleep * faster `trtree` * smaller sleep in `tfuturestream`
Diffstat (limited to 'tests/async')
-rw-r--r-- | tests/async/tfuturestream.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/async/tfuturestream.nim b/tests/async/tfuturestream.nim index 32624b100..69ad80f47 100644 --- a/tests/async/tfuturestream.nim +++ b/tests/async/tfuturestream.nim @@ -19,7 +19,7 @@ var fs = newFutureStream[int]() proc alpha() {.async.} = for i in 0 .. 5: await fs.write(i) - await sleepAsync(1000) + await sleepAsync(200) echo("Done") fs.complete() |