diff options
author | Arne Döring <arne.doering@gmx.net> | 2019-11-25 10:30:22 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-11-25 10:30:22 +0100 |
commit | 04614a30bdb7d9dec95c3e89d2bbc54ba80111ec (patch) | |
tree | 5fea6c7792b68ff3200c505a5de6872206f13e0d /tests/js | |
parent | bd8f49cbd30e35800e8b35dd33d61d7fc8c33b02 (diff) | |
download | Nim-04614a30bdb7d9dec95c3e89d2bbc54ba80111ec.tar.gz |
fix in tests/js/tconsole (#12709)
Diffstat (limited to 'tests/js')
-rw-r--r-- | tests/js/tconsole.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/js/tconsole.nim b/tests/js/tconsole.nim index f6da71c20..88c71ea18 100644 --- a/tests/js/tconsole.nim +++ b/tests/js/tconsole.nim @@ -1,7 +1,8 @@ discard """ - output: '''Hello, console + output: ''' +Hello, console 1 2 3 -1 'hi' 1.1''' +''' """ # This file tests the JavaScript console @@ -10,4 +11,3 @@ import jsconsole console.log("Hello, console") console.log(1, 2, 3) -console.log(1, "hi", 1.1) \ No newline at end of file |