Skip to content

Commit

Permalink
Fix typo in command line unit test.
Browse files Browse the repository at this point in the history
Review URL: http://codereview.chromium.org/7025

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3246 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
estade@chromium.org committed Oct 10, 2008
1 parent cda656f commit 8c9510d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/command_line_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ TEST(CommandLineTest, AppendSwitches) {
EXPECT_EQ(value, cl.GetSwitchValue(switch2));
EXPECT_TRUE(cl.HasSwitch(switch3));
EXPECT_EQ(value3, cl.GetSwitchValue(switch3));
EXPECT_TRUE(cl.HasSwitch(switch2));
EXPECT_TRUE(cl.HasSwitch(switch4));
EXPECT_EQ(value4.substr(1, value4.length() - 2), cl.GetSwitchValue(switch4));
}
#endif

0 comments on commit 8c9510d

Please sign in to comment.