Fix error where testcase did not test conversion of the object to a string. Note this does not accurately test the true problem of evaluating the object in the js shell

This commit is contained in:
bob%bclary.com 2005-03-04 06:24:16 +00:00
Родитель 9275211cad
Коммит 357d8a2d85
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -47,8 +47,8 @@ printStatus (summary);
expect = 'TypeError:51';
try
{
var obj = {toString: function() {return new Object();}}
obj();
var obj = {toString: function() {return new Object();}};
var result = String(obj);
actual = 'no error';
}
catch(e)