| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_delegate_unittest.cc
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_delegate_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_delegate_unittest.cc
|
| index 7c24d0c4acecd4b3dfdb353fb778474b9110da56..147a283d317332a3016e72c3320f26aec1478a50 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_delegate_unittest.cc
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_delegate_unittest.cc
|
| @@ -417,9 +417,6 @@ TEST_F(DataReductionProxyDelegateTest, HTTPRequests) {
|
| "http://www.example.com/", true, false, true,
|
| },
|
| {
|
| - "http://www.example.com/", false, false, false,
|
| - },
|
| - {
|
| "https://www.example.com/", false, true, false,
|
| },
|
| {
|
| @@ -437,6 +434,8 @@ TEST_F(DataReductionProxyDelegateTest, HTTPRequests) {
|
| };
|
|
|
| for (size_t i = 0; i < arraysize(tests); ++i) {
|
| + ASSERT_TRUE(tests[i].use_direct_proxy || tests[i].enabled_by_user);
|
| + ASSERT_TRUE(tests[i].enabled_by_user || !tests[i].expect_histogram);
|
| base::HistogramTester histogram_tester;
|
| GURL url(tests[i].url);
|
|
|
|
|