Chromium Code Reviews| Index: test/mjsunit/harmony/private.js |
| diff --git a/test/mjsunit/harmony/private.js b/test/mjsunit/harmony/private.js |
| index c08daf105055cfcc9ac8ea940c4372bf0b8e0803..8c7ec33f9f85a8932608f1eabe85c7cae70e3247 100644 |
| --- a/test/mjsunit/harmony/private.js |
| +++ b/test/mjsunit/harmony/private.js |
| @@ -241,7 +241,8 @@ function TestKeyGet(obj) { |
| var obj2 = Object.create(obj) |
| for (var i in symbols) { |
| assertEquals(i|0, obj[symbols[i]]) |
| - assertEquals(i|0, obj2[symbols[i]]) |
| + // Private symbols key own-properties.. |
|
rossberg
2015/06/15 12:09:11
Nit: extra period
wingo
2015/06/16 07:09:45
Done.
|
| + assertEquals(undefined, obj2[symbols[i]]) |
| } |
| } |