summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@gmail.com>2017-02-11 16:49:02 +0100
committerDominik Picheta <dominikpicheta@gmail.com>2017-02-11 16:49:02 +0100
commitb053ded266db3b0e1c257a20bf78380749892e37 (patch)
tree1baf411e79df00f7598dffa215ffb5606ef4f22d
parentf9f86899b5062e1f3db5ffbc156782b688d18ea2 (diff)
downloadNim-b053ded266db3b0e1c257a20bf78380749892e37.tar.gz
Fixes tests.
-rw-r--r--lib/upcoming/asyncdispatch.nim2
-rw-r--r--tests/async/tfuturestream.nim1
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/upcoming/asyncdispatch.nim b/lib/upcoming/asyncdispatch.nim
index d384cd05e..bdc04fdeb 100644
--- a/lib/upcoming/asyncdispatch.nim
+++ b/lib/upcoming/asyncdispatch.nim
@@ -9,7 +9,7 @@
 
 include "system/inclrtl"
 
-import os, oids, tables, strutils, times, heapqueue, lists
+import os, oids, tables, strutils, times, heapqueue, lists, queues
 
 import nativesockets, net, deques
 
diff --git a/tests/async/tfuturestream.nim b/tests/async/tfuturestream.nim
index bf8c9b4c4..ce5cfec74 100644
--- a/tests/async/tfuturestream.nim
+++ b/tests/async/tfuturestream.nim
@@ -21,6 +21,7 @@ proc alpha() {.async.} =
     await sleepAsync(1000)
     await fs.put(i)
 
+  echo("Done")
   fs.complete()
 
 proc beta() {.async.} =