diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2018-09-29 16:57:56 +0200 |
---|---|---|
committer | Timothee Cour <timothee.cour2@gmail.com> | 2018-09-29 16:57:56 +0200 |
commit | f59ddb700756545b856971b7629e3d8910e31c69 (patch) | |
tree | 543cc822e4e88da7b2b8d1e4e5cedf14d7f576e5 /tests | |
parent | 4f8cf945fb2dc9292af97a0b88eff658263d3325 (diff) | |
download | Nim-f59ddb700756545b856971b7629e3d8910e31c69.tar.gz |
remove test_async.txt after test to keep git status clean
Diffstat (limited to 'tests')
-rw-r--r-- | tests/async/tasyncfilewrite.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/async/tasyncfilewrite.nim b/tests/async/tasyncfilewrite.nim index 8439778ca..373b93301 100644 --- a/tests/async/tasyncfilewrite.nim +++ b/tests/async/tasyncfilewrite.nim @@ -9,6 +9,7 @@ import os, asyncfile, asyncdispatch const F = "test_async.txt" removeFile(F) +defer: removeFile(F) let f = openAsync(F, fmWrite) var futs = newSeq[Future[void]]() for i in 1..3: |