summaryrefslogtreecommitdiff
path: root/test/built-ins/JSON/parse/15.12.1.1-g1-3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/JSON/parse/15.12.1.1-g1-3.js')
-rw-r--r--test/built-ins/JSON/parse/15.12.1.1-g1-3.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/JSON/parse/15.12.1.1-g1-3.js b/test/built-ins/JSON/parse/15.12.1.1-g1-3.js
index 80e533c41..7de418059 100644
--- a/test/built-ins/JSON/parse/15.12.1.1-g1-3.js
+++ b/test/built-ins/JSON/parse/15.12.1.1-g1-3.js
@@ -9,5 +9,5 @@ description: The JSON lexical grammar treats <LF> as a whitespace character
assert.sameValue(JSON.parse('\n1234'), 1234, '<LF> should be ignored');
assert.throws(SyntaxError, function() {
- JSON.parse('12\n34');
+ JSON.parse('12\n34');
}, '<LF> should produce a syntax error as whitespace results in two tokens');