| 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 ee474d581b76886ab9671fb8c9be229a86e96ee9..c5cd1a0c59d5228c2fedf64535a11b05d23674df 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
|
| @@ -409,8 +409,9 @@ TEST_F(DataReductionProxySettingsTest, CheckQUICFieldTrials) {
|
| SyntheticFieldTrialRegistrationCallback,
|
| base::Unretained(this)));
|
|
|
| - EXPECT_EQ(enable_quic,
|
| - test_context_->config()->test_params()->origin().is_quic()) << i;
|
| + net::ProxyServer origin =
|
| + test_context_->config()->test_params()->proxies_for_http(false).front();
|
| + EXPECT_EQ(enable_quic, origin.is_quic()) << i;
|
| }
|
| }
|
|
|
|
|