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