diff options
author | Araq <rumpf_a@web.de> | 2018-09-03 11:13:59 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-09-03 11:13:59 +0200 |
commit | e0fd1cdb5fda1dd3e2e38d7741dcb899c9c5d5bb (patch) | |
tree | ec6c2ecff3604d8d9b041c623dea18cb124fab4c /tests/js/tseqops.nim | |
parent | b3c3a463177ebb0aeb6e9eb11788230ab91c3f08 (diff) | |
download | Nim-e0fd1cdb5fda1dd3e2e38d7741dcb899c9c5d5bb.tar.gz |
fix items for cstring for the JS target; makes tests green again
Diffstat (limited to 'tests/js/tseqops.nim')
-rw-r--r-- | tests/js/tseqops.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/js/tseqops.nim b/tests/js/tseqops.nim index d10e1ca6a..af664222c 100644 --- a/tests/js/tseqops.nim +++ b/tests/js/tseqops.nim @@ -1,8 +1,8 @@ discard """ output: '''(x: 0, y: 0) (x: 5, y: 0) -@[(x: 2, y: 4), (x: 4, y: 5), (x: 4, y: 5)] -@[(a: 3, b: 3), (a: 1, b: 1), (a: 2, b: 2)] +@[(x: "2", y: 4), (x: "4", y: 5), (x: "4", y: 5)] +@[(a: "3", b: 3), (a: "1", b: 1), (a: "2", b: 2)] ''' """ |