diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-04-14 00:54:15 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-04-14 00:54:15 +0200 |
commit | 6ae9341d482c8658e6451fe9fa133dae269ac204 (patch) | |
tree | 5866bd4677b5686e0a02d298225e8e4538bb5a0e /tests | |
parent | 50d4224d412ba9e84355a237379f6cf55bd1db0e (diff) | |
download | Nim-6ae9341d482c8658e6451fe9fa133dae269ac204.tar.gz |
make JS tests green again
Diffstat (limited to 'tests')
-rw-r--r-- | tests/js/trepr.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/js/trepr.nim b/tests/js/trepr.nim index 3f07e6793..366d247c5 100644 --- a/tests/js/trepr.nim +++ b/tests/js/trepr.nim @@ -103,7 +103,7 @@ block strings: when defined js: # C prepends the pointer, JS does not. doAssert(repr(a) == "\"12345\"") doAssert(repr(b) == "\"hello,repr\"") - doAssert(repr(c) == "\"hi\nthere\"") + doAssert(repr(c) == "\"hi\\10there\"") block sets: let |