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

Unified Diff: ash/display/json_converter_unittest.cc

Issue 2013573003: Use EXPECT_FALSE instead of EXPECT_EQ(false to fix linux build with gcc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | cc/test/ordered_simple_task_runner_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/display/json_converter_unittest.cc
diff --git a/ash/display/json_converter_unittest.cc b/ash/display/json_converter_unittest.cc
index df0bb21ec15e5980317ddff7deca2be5a1803caf..deac772ad0bc3eb15a75dbd09372b7d23dab59bd 100644
--- a/ash/display/json_converter_unittest.cc
+++ b/ash/display/json_converter_unittest.cc
@@ -85,7 +85,7 @@ TEST(JsonConverterTest, OldJsonToDisplayLayout) {
EXPECT_TRUE(JsonToDisplayLayout(*read_value, &read_layout));
EXPECT_EQ(true, read_layout.mirrored);
EXPECT_EQ(1, read_layout.primary_id);
- EXPECT_EQ(false, read_layout.default_unified);
+ EXPECT_FALSE(read_layout.default_unified);
ASSERT_EQ(1u, read_layout.placement_list.size());
EXPECT_EQ(display::DisplayPlacement::BOTTOM,
read_layout.placement_list[0].position);
« no previous file with comments | « no previous file | cc/test/ordered_simple_task_runner_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698