Index: test/mjsunit/harmony/proxies.js |
diff --git a/test/mjsunit/harmony/proxies.js b/test/mjsunit/harmony/proxies.js |
index 8d8f83996e255832168fa0c3c5a2d3f117888cb8..8b12b389b9cf956d47d086e3d4ed6c7011385c48 100644 |
--- a/test/mjsunit/harmony/proxies.js |
+++ b/test/mjsunit/harmony/proxies.js |
@@ -1630,8 +1630,8 @@ TestPropertyNames([], { |
getOwnPropertyNames: function() { return [] } |
}) |
-TestPropertyNames(["a", "zz", " ", "0"], { |
- getOwnPropertyNames: function() { return ["a", "zz", " ", 0] } |
+TestPropertyNames(["a", "zz", " ", "0", "toString"], { |
+ getOwnPropertyNames: function() { return ["a", "zz", " ", 0, "toString"] } |
}) |
TestPropertyNames(["throw", "function "], { |
@@ -1678,8 +1678,8 @@ TestKeys([], { |
keys: function() { return [] } |
}) |
-TestKeys(["a", "zz", " ", "0"], { |
- keys: function() { return ["a", "zz", " ", 0] } |
+TestKeys(["a", "zz", " ", "0", "toString"], { |
+ keys: function() { return ["a", "zz", " ", 0, "toString"] } |
}) |
TestKeys(["throw", "function "], { |