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

Unified Diff: ui/views/view_unittest.cc

Issue 10824064: Use EXPECT_FALSE instead of EXPECT_EQ to avoid compiler error (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 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 | « ui/base/ime/input_method_ibus_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/view_unittest.cc
diff --git a/ui/views/view_unittest.cc b/ui/views/view_unittest.cc
index ad3949d8cedce835017f78aabb5027216f5cce21..bf3cdfedcaa8d14d3a855d23671674b8bc564fa6 100644
--- a/ui/views/view_unittest.cc
+++ b/ui/views/view_unittest.cc
@@ -3344,7 +3344,7 @@ TEST_F(ViewLayerTest, RecreateLayer) {
v->layer()->set_scale_content(false);
scoped_ptr<ui::Layer> old_layer(v->RecreateLayer());
ui::Layer* new_layer = v->layer();
- EXPECT_EQ(false, new_layer->scale_content());
+ EXPECT_FALSE(new_layer->scale_content());
}
#endif // USE_AURA
« no previous file with comments | « ui/base/ime/input_method_ibus_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698