diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-04-19 12:11:18 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-04-19 12:11:18 +0200 |
commit | ef9a9b119dbcdf00eb66a368efc5e07d0d8d4828 (patch) | |
tree | a89c552d0de55ead5a6b031ddb4fc2ddbdec2b35 /tests/async | |
parent | 4d56b7da5a9558ac45158b5c614e4aa4e922d864 (diff) | |
parent | d7e8b89eb8f159e0220c48cd06233b7a6a060a72 (diff) | |
download | Nim-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.nim | 2 |
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) |