| Index: chrome/browser/component_updater/chrome_component_updater_configurator_unittest.cc
|
| diff --git a/chrome/browser/component_updater/chrome_component_updater_configurator_unittest.cc b/chrome/browser/component_updater/chrome_component_updater_configurator_unittest.cc
|
| index 6581d331a67bd263fd9d5118bfa19140e551e31c..f6c958f0aa97214aee0095afa16a15f2a9b6f119 100644
|
| --- a/chrome/browser/component_updater/chrome_component_updater_configurator_unittest.cc
|
| +++ b/chrome/browser/component_updater/chrome_component_updater_configurator_unittest.cc
|
| @@ -33,8 +33,8 @@ TEST(ChromeComponentUpdaterConfiguratorTest, TestFastUpdate) {
|
|
|
| const auto config(MakeChromeComponentUpdaterConfigurator(&cmdline, nullptr));
|
|
|
| - ASSERT_EQ(10, config->InitialDelay());
|
| - CHECK_EQ(60, config->NextCheckDelay());
|
| + CHECK_EQ(10, config->InitialDelay());
|
| + CHECK_EQ(6 * 60 * 60, config->NextCheckDelay());
|
| CHECK_EQ(1, config->StepDelay());
|
| CHECK_EQ(2, config->OnDemandDelay());
|
| CHECK_EQ(10, config->UpdateDelay());
|
|
|