From 8b7b98fb9ca23a8f83d9392782a88f5a4f97e3f6 Mon Sep 17 00:00:00 2001 From: "bclary%bclary.com" Date: Sun, 10 Sep 2006 09:26:16 +0000 Subject: [PATCH] JavaScript Test - update test to reflect current behavior --- js/tests/js1_7/block/regress-349493.js | 2 +- js/tests/js1_7/block/regress-349499.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/tests/js1_7/block/regress-349493.js b/js/tests/js1_7/block/regress-349493.js index 71a80abf2723..36818da90eb4 100755 --- a/js/tests/js1_7/block/regress-349493.js +++ b/js/tests/js1_7/block/regress-349493.js @@ -51,7 +51,7 @@ function test() printBugNumber (bug); printStatus (summary); - expect = 'function (x) {\n return x ? 0 : let (a = 3) a;\n}'; + expect = 'function (x) {\n return x ? 0 : (let (a = 3) a);\n}'; var f = function (x) { return x ? 0 : let (a = 3) a; } actual = f.toString(); diff --git a/js/tests/js1_7/block/regress-349499.js b/js/tests/js1_7/block/regress-349499.js index 0f2ca0474e33..0762dd1ec5e0 100755 --- a/js/tests/js1_7/block/regress-349499.js +++ b/js/tests/js1_7/block/regress-349499.js @@ -51,7 +51,7 @@ function test() printBugNumber (bug); printStatus (summary); - expect = 'function (x) {\n new (let (x = 3) x)();\n}'; + expect = 'function (x) {\n new (let (x = 3) x);\n}'; var f = function(x) { new let (x = 3) x }; actual = f.toString();