| Index: test/mjsunit/value-wrapper-accessor.js
|
| diff --git a/test/mjsunit/value-wrapper-accessor.js b/test/mjsunit/value-wrapper-accessor.js
|
| index f95145652cde83270ecaa087f9eb5512c1bac603..79db407121c789850ab66adc1feccbd8202468ec 100644
|
| --- a/test/mjsunit/value-wrapper-accessor.js
|
| +++ b/test/mjsunit/value-wrapper-accessor.js
|
| @@ -77,20 +77,14 @@ function test(object, prototype) {
|
| %OptimizeFunctionOnNextCall(nonstrict);
|
| result = undefined;
|
| nonstrict(object);
|
| - // TODO(1475): Support storing to primitive values.
|
| - // This should return "object" once storing to primitive values is
|
| - // supported.
|
| - assertEquals("undefined", typeof result);
|
| + assertEquals("object", typeof result);
|
|
|
| strict(object);
|
| strict(object);
|
| %OptimizeFunctionOnNextCall(strict);
|
| result = undefined;
|
| strict(object);
|
| - // TODO(1475): Support storing to primitive values.
|
| - // This should return "object" once storing to primitive values is
|
| - // supported.
|
| - assertEquals("undefined", typeof result);
|
| + assertEquals(object, result);
|
| })();
|
| }
|
|
|
|
|