Index: test/mjsunit/harmony/private.js |
diff --git a/test/mjsunit/harmony/private.js b/test/mjsunit/harmony/private.js |
index 71b4377c57d84ec026e31229432cac123121dd16..cd65af1c70572323fa2336966a55440d80614d7d 100644 |
--- a/test/mjsunit/harmony/private.js |
+++ b/test/mjsunit/harmony/private.js |
@@ -278,8 +278,8 @@ function TestKeyDescriptor(obj) { |
assertEquals(i|0, desc.value) |
assertTrue(desc.configurable) |
assertEquals(i % 2 == 0, desc.writable) |
- assertEquals(i % 2 == 0, desc.enumerable) |
- assertEquals(i % 2 == 0, |
+ assertEquals(false, desc.enumerable) |
+ assertEquals(false, |
Object.prototype.propertyIsEnumerable.call(obj, symbols[i])) |
} |
} |