...and one more bustage fix to change a test that assigned to undefined, seemingly for no reason, to assign to another otherwise-irrelevant global property (parseInt) instead. r=lumpy

This commit is contained in:
Jeff Walden 2010-01-07 00:50:51 -06:00
Родитель 4b4641eb43
Коммит 501646bf8a
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -51,9 +51,9 @@ printStatus (summary);
jit(true);
__defineGetter__("x3", Function);
undefined = x3;
undefined.prototype = [];
for (var z = 0; z < 4; ++z) { new undefined() }
parseInt = x3;
parseInt.prototype = [];
for (var z = 0; z < 4; ++z) { new parseInt() }
jit(false);
reportCompare(expect, actual, summary);