summary refs log tree commit diff stats
path: root/tests/async
diff options
context:
space:
mode:
authorMiran <narimiran@users.noreply.github.com>2018-10-17 19:46:42 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-10-17 19:46:42 +0200
commit95504caa31df4cb4e86b03fd38d729b2ddb1d439 (patch)
tree13282df544a279c16dd31fa63751645431ed562e /tests/async
parent81e33b9d874cd400d61b0e9df21e7367ea430dc3 (diff)
downloadNim-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.nim2
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()