diff options
Diffstat (limited to 'tests/template/twrongmapit.nim')
-rw-r--r-- | tests/template/twrongmapit.nim | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/template/twrongmapit.nim b/tests/template/twrongmapit.nim index 13f53d119..2d53d03f5 100644 --- a/tests/template/twrongmapit.nim +++ b/tests/template/twrongmapit.nim @@ -1,9 +1,6 @@ discard """ - disabled: true - output: "####" + joinable: false """ -# unfortunately our tester doesn't support multiple lines of compiler -# error messages yet... # bug #1562 type Foo* {.pure, final.} = object @@ -30,4 +27,4 @@ import sequtils (var i = @[""];i).applyIt(it) # now works: -echo "##", i[0], "##" +doAssert i[0] == "" |