Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: test/mjsunit/harmony/private.js

Issue 2497213003: Merged: Squashed multiple commits. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/property.h ('k') | test/mjsunit/regress/regress-private-enumerable.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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]))
}
}
« no previous file with comments | « src/property.h ('k') | test/mjsunit/regress/regress-private-enumerable.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698