Index: test/mjsunit/harmony/proxies-get-prototype-of.js |
diff --git a/test/mjsunit/harmony/proxy/proxy-getPrototypeOf.js b/test/mjsunit/harmony/proxies-get-prototype-of.js |
similarity index 71% |
rename from test/mjsunit/harmony/proxy/proxy-getPrototypeOf.js |
rename to test/mjsunit/harmony/proxies-get-prototype-of.js |
index df7525574e50cfeaa17d985fc87dcb78924d02d1..364f5328f4fc173a406a1b94e5bdd942dc288b62 100644 |
--- a/test/mjsunit/harmony/proxy/proxy-getPrototypeOf.js |
+++ b/test/mjsunit/harmony/proxies-get-prototype-of.js |
@@ -26,14 +26,13 @@ handler.getPrototypeOf = function() { |
assertSame(Object.getPrototypeOf(proxy), target_prototype); |
// Test with proxy target: |
-var proxy2 = new Proxy(proxy, {}); |
+var proxy2 = new Proxy(proxy, {'handler':1}); |
assertSame(Object.getPrototypeOf(proxy2), target_prototype); |
// Test with Proxy handler: |
-// TODO(neis,cbruni): Uncomment once the get trap works again. |
-// var proxy3_prototype = {}; |
-// var handler_proxy = new Proxy({ |
-// getPrototypeOf: function() { return proxy3_prototype } |
-// }, {}); |
-// var proxy3 = new Proxy(target, handler_proxy); |
-// assertSame(Object.getPrototypeOf(proxy3), target_prototype); |
+var proxy3_prototype = {'proto3':true}; |
+var handler_proxy = new Proxy({ |
+ getPrototypeOf: function() { return proxy3_prototype } |
+}, {}); |
+var proxy3 = new Proxy(target, handler_proxy); |
+assertSame(Object.getPrototypeOf(proxy3), proxy3_prototype); |