| Index: mozilla-tests/js1_6/Regress/regress-353078.js
|
| ===================================================================
|
| --- mozilla-tests/js1_6/Regress/regress-353078.js (revision 43940)
|
| +++ mozilla-tests/js1_6/Regress/regress-353078.js (working copy)
|
| @@ -52,14 +52,12 @@
|
| 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);
|
|
|
|
|