diff options
Diffstat (limited to 'tests/system/toString.nim')
-rw-r--r-- | tests/system/toString.nim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/system/toString.nim b/tests/system/toString.nim index 24dd903c0..17dcb3cb4 100644 --- a/tests/system/toString.nim +++ b/tests/system/toString.nim @@ -1,7 +1,11 @@ discard """ output:'''@[23, 45] -@[, \"foo\", \"bar\"]''' +@[, foo, bar] +[, foo, bar] +[23, 45]''' """ echo($(@[23, 45])) echo($(@["", "foo", "bar"])) +echo($(["", "foo", "bar"])) +echo($([23, 45])) |