Fixes #1267.
authorkoichik <koichik@improvement.jp>
Mon, 4 Jul 2011 19:10:14 +0000 (04:10 +0900)
committerRyan Dahl <ry@tinyclouds.org>
Sat, 9 Jul 2011 00:18:31 +0000 (17:18 -0700)
Error message of JSON.parse() was changed.

test/simple/test-repl.js

index 3183fa1..c862d11 100644 (file)
@@ -118,7 +118,7 @@ function error_test() {
     // invalid input to JSON.parse error is special case of syntax error,
     // should throw
     { client: client_unix, send: 'JSON.parse(\'{invalid: \\\'json\\\'}\');',
-      expect: /^SyntaxError: Unexpected token ILLEGAL/ },
+      expect: /^SyntaxError: Unexpected token i/ },
     // Named functions can be used:
     { client: client_unix, send: 'function blah() { return 1; }',
       expect: prompt_unix },