From 05175de922a3651711e153da89703b7199dd3118 Mon Sep 17 00:00:00 2001 From: Bob Clary Date: Thu, 27 Nov 2008 04:38:43 -0800 Subject: [PATCH] bug 462470 - JavaScript Tests - deal with changes in decompilation and behavior from bug 461233. --- js/tests/js1_8_1/decompilation/regress-380237-03.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/tests/js1_8_1/decompilation/regress-380237-03.js b/js/tests/js1_8_1/decompilation/regress-380237-03.js index 3fbe19aa5b4..84dbea81ccd 100644 --- a/js/tests/js1_8_1/decompilation/regress-380237-03.js +++ b/js/tests/js1_8_1/decompilation/regress-380237-03.js @@ -137,7 +137,7 @@ function test() reportCompare(expect, actual, summary + ': Do not Assert: *pc == JSOP_CALL'); f = (function() { ([yield] for (x in [])); }); - expect = 'function() { ([yield] for (x in [])); }'; + expect = 'function() { ([(yield)] for (x in [])); }'; actual = f + ''; compareSource(expect, actual, summary);