bug 462470 - JavaScript Tests - deal with changes in decompilation and behavior from bug 461233.

This commit is contained in:
Bob Clary 2008-11-27 04:38:43 -08:00
parent d51b739a21
commit 05175de922

View File

@ -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);