Index: test/mjsunit/harmony/proxies-hash.js |
diff --git a/test/mjsunit/harmony/proxies-hash.js b/test/mjsunit/harmony/proxies-hash.js |
index b78edbf7cf10371a43898435831997a689049034..e2e70d45c2bfa3df73e6c03f54c418f3761eea43 100644 |
--- a/test/mjsunit/harmony/proxies-hash.js |
+++ b/test/mjsunit/harmony/proxies-hash.js |
@@ -31,7 +31,7 @@ |
// Helper. |
function TestWithProxies(test, construct, handler) { |
- test(construct, handler, Proxy.create) |
+ test(construct, handler, function(h) { return new Proxy({}, h) }) |
test(construct, handler, function(h) { |
return Proxy.createFunction(h, function() {}) |
}) |