Index: base/command_line_unittest.cc |
diff --git a/base/command_line_unittest.cc b/base/command_line_unittest.cc |
index 656236e09e35c6a2bb705c4bb2ba14e2beea1798..c86bf507a17cc7142313991b26f4fd2e03f65a98 100644 |
--- a/base/command_line_unittest.cc |
+++ b/base/command_line_unittest.cc |
@@ -291,7 +291,7 @@ TEST(CommandLineTest, ProgramQuotes) { |
// Calling Init multiple times should not modify the previous CommandLine. |
TEST(CommandLineTest, Init) { |
CommandLine* initial = CommandLine::ForCurrentProcess(); |
- CommandLine::Init(0, NULL); |
+ EXPECT_FALSE(CommandLine::Init(0, NULL)); |
CommandLine* current = CommandLine::ForCurrentProcess(); |
EXPECT_EQ(initial, current); |
} |