Index: test/mjsunit/harmony/regress/regress-405844.js |
diff --git a/test/mjsunit/harmony/regress/regress-405844.js b/test/mjsunit/harmony/regress/regress-405844.js |
index 3d3561f7a55fdd6681ff503652711899a4a52862..4962ec2c78cd8912d454ea34c315a9d10e60a209 100644 |
--- a/test/mjsunit/harmony/regress/regress-405844.js |
+++ b/test/mjsunit/harmony/regress/regress-405844.js |
@@ -4,7 +4,7 @@ |
// |
// Flags: --harmony-proxies --harmony-object-observe |
-var proxy = Proxy.create({ fix: function() { return {}; } }); |
+var proxy = new Proxy({}, { fix: function() { return {}; } }); |
Object.preventExtensions(proxy); |
Object.observe(proxy, function(){}); |