| Index: components/data_reduction_proxy/core/common/data_reduction_proxy_event_store_unittest.cc
|
| diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_event_store_unittest.cc b/components/data_reduction_proxy/core/common/data_reduction_proxy_event_store_unittest.cc
|
| index c8766f98b8e748f7d9dc5017a0930c8dbbcb1ebb..4bdda15ef3ffcd46c7c656fe7051c4b2c57f0664 100644
|
| --- a/components/data_reduction_proxy/core/common/data_reduction_proxy_event_store_unittest.cc
|
| +++ b/components/data_reduction_proxy/core/common/data_reduction_proxy_event_store_unittest.cc
|
| @@ -259,6 +259,8 @@ TEST_F(DataReductionProxyEventStoreTest, TestFeedbackLastBypassEventFullURL) {
|
| sanitized_event->SetString("bypass_seconds", "40");
|
| bypass_params->SetString("url", "http://www.foo.com/bar?baz=1234");
|
| sanitized_event->SetString("url", "http://www.foo.com/bar");
|
| + bypass_params->SetString("method", "GET");
|
| + sanitized_event->SetString("method", "GET");
|
|
|
| bypass_event->Set("params", std::move(bypass_params));
|
| std::string sanitized_output;
|
| @@ -289,6 +291,8 @@ TEST_F(DataReductionProxyEventStoreTest, TestFeedbackLastBypassEventHostOnly) {
|
| sanitized_event->SetString("bypass_seconds", "40");
|
| bypass_params->SetString("url", "http://www.foo.com/bar?baz=1234");
|
| sanitized_event->SetString("url", "www.foo.com");
|
| + bypass_params->SetString("method", "GET");
|
| + sanitized_event->SetString("method", "GET");
|
|
|
| bypass_event->Set("params", std::move(bypass_params));
|
| std::string sanitized_output;
|
|
|