| Index: test/mjsunit/getter-in-value-prototype.js
|
| diff --git a/test/mjsunit/getter-in-value-prototype.js b/test/mjsunit/getter-in-value-prototype.js
|
| index b55320ac5b9ea8f30c820f15fd572772f25363b5..abe2cb1934b0dab8f366e93e1bc19480c4fd1230 100644
|
| --- a/test/mjsunit/getter-in-value-prototype.js
|
| +++ b/test/mjsunit/getter-in-value-prototype.js
|
| @@ -31,5 +31,5 @@
|
| // JSObject.
|
|
|
| String.prototype.__defineGetter__('x', function() { return this; });
|
| -assertEquals('asdf', 'asdf'.x);
|
| +assertEquals(Object('asdf'), 'asdf'.x);
|
|
|
|
|