| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_unittest.cc
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_unittest.cc
|
| index d2ef4375ad67eb0e7f6f60713fe9e2149e03f692..8af34b7db5c5d33d08bfd7303a753dba6228cbee 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_unittest.cc
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_unittest.cc
|
| @@ -66,17 +66,14 @@ TEST_F(DataReductionProxySettingsTest, TestIsProxyEnabledOrManaged) {
|
| test_context_->config()->UpdateConfigForTesting(false, true);
|
|
|
| EXPECT_FALSE(settings_->IsDataReductionProxyEnabled());
|
| - EXPECT_FALSE(settings_->UpdateDataSavings(std::string(), 0, 0));
|
| EXPECT_FALSE(settings_->IsDataReductionProxyManaged());
|
|
|
| CheckOnPrefChange(true, true, false);
|
| EXPECT_TRUE(settings_->IsDataReductionProxyEnabled());
|
| - EXPECT_TRUE(settings_->UpdateDataSavings(std::string(), 0, 0));
|
| EXPECT_FALSE(settings_->IsDataReductionProxyManaged());
|
|
|
| CheckOnPrefChange(true, true, true);
|
| EXPECT_TRUE(settings_->IsDataReductionProxyEnabled());
|
| - EXPECT_TRUE(settings_->UpdateDataSavings(std::string(), 0, 0));
|
| EXPECT_TRUE(settings_->IsDataReductionProxyManaged());
|
|
|
| test_context_->RunUntilIdle();
|
|
|