summary refs log tree commit diff stats
path: root/tests/async
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-04-19 12:11:18 +0200
committerAndreas Rumpf <rumpf_a@web.de>2016-04-19 12:11:18 +0200
commitef9a9b119dbcdf00eb66a368efc5e07d0d8d4828 (patch)
treea89c552d0de55ead5a6b031ddb4fc2ddbdec2b35 /tests/async
parent4d56b7da5a9558ac45158b5c614e4aa4e922d864 (diff)
parentd7e8b89eb8f159e0220c48cd06233b7a6a060a72 (diff)
downloadNim-ef9a9b119dbcdf00eb66a368efc5e07d0d8d4828.tar.gz
Merge branch 'devel' of github.com:nim-lang/Nim into devel
Diffstat (limited to 'tests/async')
-rw-r--r--tests/async/tasyncfile.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/async/tasyncfile.nim b/tests/async/tasyncfile.nim
index 05cda5e5f..26a9bb391 100644
--- a/tests/async/tasyncfile.nim
+++ b/tests/async/tasyncfile.nim
@@ -24,7 +24,7 @@ proc main() {.async.} =
     var file = openAsync(fn, fmAppend)
     await file.write("\ntest2")
     let errorTest = file.readAll()
-    await errorTest
+    echo await errorTest
     doAssert errorTest.failed
     file.close()
     file = openAsync(fn, fmRead)