| Index: test/mjsunit/harmony/private.js
|
| diff --git a/test/mjsunit/harmony/private.js b/test/mjsunit/harmony/private.js
|
| index d44ff33aca446eff4226fa773a6eb0d4f321fd51..7d34db40a8bf74c0bc7c70f65058b029942f2718 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]))
|
| }
|
| }
|
|
|