| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_config_unittest.cc
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_unittest.cc
|
| index bd5a10db625155aa76b32d840a33a7e0c8d956dd..d6668752802214e32eed11d99cfca06e47c51d88 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_unittest.cc
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_unittest.cc
|
| @@ -126,13 +126,11 @@ class DataReductionProxyConfigTest : public testing::Test {
|
| !config()->restricted_by_carrier_,
|
| request_succeeded && (response == "OK")),
|
| request_succeeded, 1);
|
| - MockDataReductionProxyService* service =
|
| - test_context_->mock_data_reduction_proxy_service();
|
| TestResponder responder;
|
| responder.response = response;
|
| responder.status =
|
| net::URLRequestStatus(net::URLRequestStatus::SUCCESS, net::OK);
|
| - EXPECT_CALL(*service, SecureProxyCheck(_, _))
|
| + EXPECT_CALL(*(config()), SecureProxyCheck(_, _))
|
| .Times(1)
|
| .WillRepeatedly(testing::WithArgs<1>(
|
| testing::Invoke(&responder, &TestResponder::ExecuteCallback)));
|
|
|