diff options
Diffstat (limited to 'test/built-ins/JSON/parse/15.12.1.1-g1-2.js')
-rw-r--r-- | test/built-ins/JSON/parse/15.12.1.1-g1-2.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/JSON/parse/15.12.1.1-g1-2.js b/test/built-ins/JSON/parse/15.12.1.1-g1-2.js index f42e2c7a8..4c71c01a7 100644 --- a/test/built-ins/JSON/parse/15.12.1.1-g1-2.js +++ b/test/built-ins/JSON/parse/15.12.1.1-g1-2.js @@ -9,5 +9,5 @@ description: The JSON lexical grammar treats <CR> as a whitespace character assert.sameValue(JSON.parse('\r1234'), 1234, '<cr> should be ignored'); assert.throws(SyntaxError, function() { - JSON.parse('12\r34'); + JSON.parse('12\r34'); }, '<CR> should produce a syntax error as whitespace results in two tokens'); |