| Index: test/mjsunit/harmony/proxies-has.js
|
| diff --git a/test/mjsunit/harmony/proxies-has.js b/test/mjsunit/harmony/proxies-has.js
|
| index ffeb0312aad6884519c30d46a0a281463aa95af7..1c1e98d5b15d1b80f9a2d3cb3e0289eae58139dc 100644
|
| --- a/test/mjsunit/harmony/proxies-has.js
|
| +++ b/test/mjsunit/harmony/proxies-has.js
|
| @@ -49,7 +49,7 @@ assertThrows("'nonconf' in proxy", TypeError);
|
|
|
| // Step 9b iii. Trap result must confirm presence of all own properties of
|
| // non-extensible targets.
|
| -Object.freeze(target);
|
| +Object.preventExtensions(target);
|
| assertThrows("'nonconf' in proxy", TypeError);
|
| assertThrows("'target_one' in proxy", TypeError);
|
| assertFalse("target_two" in proxy);
|
|
|