| Index: test/mjsunit/object-seal.js
|
| diff --git a/test/mjsunit/object-seal.js b/test/mjsunit/object-seal.js
|
| index f21baed37711d954d309bc9009d534c998583778..6608aa6aeeef26c6606929638553cbe8575c1ba3 100644
|
| --- a/test/mjsunit/object-seal.js
|
| +++ b/test/mjsunit/object-seal.js
|
| @@ -99,8 +99,8 @@ assertEquals("43", obj.x);
|
|
|
| // Test on accessors.
|
| var obj2 = {};
|
| -function get() { return 43; };
|
| -function set() {};
|
| +function get() { return 43; }
|
| +function set() {}
|
| Object.defineProperty(obj2, 'x', { get: get, set: set, configurable: true });
|
|
|
| desc = Object.getOwnPropertyDescriptor(obj2, 'x');
|
|
|