diff --git a/mozilla/js/tests/js1_6/Regress/regress-353078.js b/mozilla/js/tests/js1_6/Regress/regress-353078.js index 2fbe01b2ffe..c6b7b9849d1 100755 --- a/mozilla/js/tests/js1_6/Regress/regress-353078.js +++ b/mozilla/js/tests/js1_6/Regress/regress-353078.js @@ -52,14 +52,12 @@ function test() printBugNumber(BUGNUMBER); printStatus (summary); - expect = 'TypeError: can\'t convert global to string'; try { this.toString = function() { return {}; }; p = [11].map('foo'.split); } catch(ex) { - actual = ex + ''; } reportCompare(expect, actual, summary);