bug 473096 - JavaScript Test - adjust test for new decompilation pattern.

git-svn-id: svn://10.0.0.236/trunk@258001 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bclary%bclary.com 2009-08-07 23:51:47 +00:00
parent 0fb490d7e1
commit eb1a9ff174

View File

@ -56,7 +56,7 @@ function test()
var f;
f = function() { z((yield 3)) }
expect = 'function() { z(yield 3); }';
expect = 'function() { z((yield 3)); }';
actual = f + '';
compareSource(expect, actual, summary + ': 1');