summaryrefslogtreecommitdiffstats
path: root/base/command_line_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/command_line_unittest.cc')
-rw-r--r--base/command_line_unittest.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/command_line_unittest.cc b/base/command_line_unittest.cc
index 6a0a62c..ae619d5 100644
--- a/base/command_line_unittest.cc
+++ b/base/command_line_unittest.cc
@@ -49,11 +49,11 @@ TEST(CommandLineTest, CommandLineConstructor) {
L"\"in the time of submarines...\"");
#elif OS_POSIX
const char* argv[] = {"program", "--foo=", "-bAr",
- "/Spaetzel=pierogi /Baz flim",
- "--other-switches=\"--dog=canine --cat=feline\"",
+ "-Spaetzel=pierogi", "-Baz", "flim",
+ "--other-switches=--dog=canine --cat=feline",
"-spaetzle=Crepe", "-=loosevalue", "flan",
- "--input-translation=\"45\"--output-rotation",
- "\"in the time of submarines...\""};
+ "--input-translation=45--output-rotation",
+ "in the time of submarines..."};
CommandLine cl(arraysize(argv), argv);
#endif
EXPECT_FALSE(cl.command_line_string().empty());