diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-11-28 00:09:31 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-28 09:09:31 +0100 |
commit | b809562c7cc38e391c1e3240d8ca77ba035c3f75 (patch) | |
tree | 5f5d6869dd774cb09d2956fdef47310d64a6c983 /tests/async/tasyncfilewrite.nim | |
parent | 157e7820f1bf120d0015f3b564ccc45c42ab03f4 (diff) | |
download | Nim-b809562c7cc38e391c1e3240d8ca77ba035c3f75.tar.gz |
make megatest consistent with unjoined tests wrt newlines, honor newlines in output spec (#16151)
* fix megatest newlines * still allow missing trailing newline for now but in a more strict way than before
Diffstat (limited to 'tests/async/tasyncfilewrite.nim')
-rw-r--r-- | tests/async/tasyncfilewrite.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/async/tasyncfilewrite.nim b/tests/async/tasyncfilewrite.nim index 3baf2bbc6..72a2df0b0 100644 --- a/tests/async/tasyncfilewrite.nim +++ b/tests/async/tasyncfilewrite.nim @@ -1,7 +1,8 @@ discard """ output: '''string 1 string 2 -string 3''' +string 3 +''' """ # bug #5532 import os, asyncfile, asyncdispatch |