diff options
Diffstat (limited to 'test/compress/screw-ie8.js')
-rw-r--r-- | test/compress/screw-ie8.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/compress/screw-ie8.js b/test/compress/screw-ie8.js index fc492112..68d1a364 100644 --- a/test/compress/screw-ie8.js +++ b/test/compress/screw-ie8.js @@ -204,13 +204,13 @@ issue_1586_1: { input: { function f() { try { + x(); } catch (err) { console.log(err.message); } } } - expect_exact: "function f(){try{}catch(c){console.log(c.message)}}" - expect_stdout: true + expect_exact: "function f(){try{x()}catch(c){console.log(c.message)}}" } issue_1586_2: { @@ -223,11 +223,11 @@ issue_1586_2: { input: { function f() { try { + x(); } catch (err) { console.log(err.message); } } } - expect_exact: "function f(){try{}catch(c){console.log(c.message)}}" - expect_stdout: true + expect_exact: "function f(){try{x()}catch(c){console.log(c.message)}}" } |