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

Unified Diff: test/cctest/test-api.cc

Issue 1421413002: Update to ES2015 == semantics for Symbol/SIMD wrappers (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: make ordering closer to other clauses Created 5 years, 2 months 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/objects.cc ('k') | test/mjsunit/double-equals.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-api.cc
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
index 9a0c3e77d0b88d5500184235d767e68db080a36a..c42d0537a4ff180a9d0c5b7983481603cac8e210 100644
--- a/test/cctest/test-api.cc
+++ b/test/cctest/test-api.cc
@@ -2366,7 +2366,7 @@ THREADED_TEST(SymbolProperties) {
CHECK(sym_obj->IsSymbolObject());
CHECK(!sym2->IsSymbolObject());
CHECK(!obj->IsSymbolObject());
- CHECK(!sym_obj->Equals(sym2));
+ CHECK(sym_obj->Equals(sym2));
CHECK(!sym_obj->StrictEquals(sym2));
CHECK(v8::SymbolObject::Cast(*sym_obj)->Equals(sym_obj));
CHECK(v8::SymbolObject::Cast(*sym_obj)->ValueOf()->Equals(sym2));
« no previous file with comments | « src/objects.cc ('k') | test/mjsunit/double-equals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698