| Index: test/mjsunit/error-constructors.js
|
| diff --git a/test/mjsunit/error-constructors.js b/test/mjsunit/error-constructors.js
|
| index 966a1629d7e65289e9e5645689da0c12dd2ea3dd..87edc89c41c32e7637c922ba54d02c2722a051c1 100644
|
| --- a/test/mjsunit/error-constructors.js
|
| +++ b/test/mjsunit/error-constructors.js
|
| @@ -33,7 +33,7 @@ assertEquals(Object.prototype, Error.prototype.__proto__);
|
|
|
| // Check that error construction does not call setters for the
|
| // properties on error objects in prototypes.
|
| -function fail() { assertTrue(false); };
|
| +function fail() { assertTrue(false); }
|
| ReferenceError.prototype.__defineSetter__('stack', fail);
|
| ReferenceError.prototype.__defineSetter__('message', fail);
|
| ReferenceError.prototype.__defineSetter__('type', fail);
|
|
|