diff options
Diffstat (limited to 'chrome/common/switch_utils_unittest.cc')
-rw-r--r-- | chrome/common/switch_utils_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/switch_utils_unittest.cc b/chrome/common/switch_utils_unittest.cc index 74bc8af..b522d91 100644 --- a/chrome/common/switch_utils_unittest.cc +++ b/chrome/common/switch_utils_unittest.cc @@ -13,7 +13,7 @@ TEST(SwitchUtilsTest, RemoveSwitches) { const CommandLine::CharType* argv[] = { FILE_PATH_LITERAL("program"), FILE_PATH_LITERAL("--app=http://www.google.com/"), - FILE_PATH_LITERAL("--first-run"), + FILE_PATH_LITERAL("--force-first-run"), FILE_PATH_LITERAL("--import"), FILE_PATH_LITERAL("--import-from-file=c:\\test.html"), FILE_PATH_LITERAL("--make-default-browser"), @@ -39,7 +39,7 @@ TEST(SwitchUtilsTest, RemoveSwitchesFromString) { CommandLine cmd_line = CommandLine::FromString( L"program" L" --app=http://www.google.com/" - L" --first-run" + L" --force-first-run" L" --import" L" --import-from-file=c:\\test.html" L" --make-default-browser" |