diff options
Diffstat (limited to 'test/mocha/comments.js')
-rw-r--r-- | test/mocha/comments.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mocha/comments.js b/test/mocha/comments.js index b350a406..1ca1432a 100644 --- a/test/mocha/comments.js +++ b/test/mocha/comments.js @@ -13,7 +13,7 @@ describe("comments", function() { var fail = function(e) { return e instanceof UglifyJS.JS_Parse_Error - && e.message === "Unexpected token: operator (>)" + && e.message === "Unexpected token: operator «>»" && e.line === 2 && e.col === 0; } @@ -36,7 +36,7 @@ describe("comments", function() { var fail = function(e) { return e instanceof UglifyJS.JS_Parse_Error - && e.message === "Unexpected token: operator (>)" + && e.message === "Unexpected token: operator «>»" && e.line === 5 && e.col === 0; } |