JavaScript Tests - fix test to match new decompilation and to add missing brace in expected decompilation, bug 381205

This commit is contained in:
bclary%bclary.com 2007-05-31 18:31:12 +00:00
Родитель df4c2bdfcc
Коммит f4623b155d
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -46,7 +46,7 @@ var expect = '';
printBugNumber(BUGNUMBER);
printStatus (summary);
expect = '({get x () {print(4);})';
expect = '({get x p() {print(4);}})';
getter function p() { print(4) }
actual = uneval({x getter: this.__lookupGetter__("p")});
reportCompare(expect, actual, summary + ': global');