Index: test/mjsunit/harmony/regress/regress-2219.js |
diff --git a/test/mjsunit/harmony/regress/regress-2219.js b/test/mjsunit/harmony/regress/regress-2219.js |
index 946c75bd804ae54d8f515f9f863688287a103e84..eb369db9a5f614cb12da84986742865ce6562445 100644 |
--- a/test/mjsunit/harmony/regress/regress-2219.js |
+++ b/test/mjsunit/harmony/regress/regress-2219.js |
@@ -27,6 +27,6 @@ |
// Flags: --harmony-proxies --expose-gc |
-var p = Proxy.create({getPropertyDescriptor: function() { gc() }}); |
+var p = new Proxy({}, {getPropertyDescriptor: function() { gc() }}); |
var o = Object.create(p); |
assertSame(23, o.x = 23); |