| Index: components/domain_reliability/scheduler_unittest.cc
|
| diff --git a/components/domain_reliability/scheduler_unittest.cc b/components/domain_reliability/scheduler_unittest.cc
|
| index 57df6f21740478857b83995b951472acbd0b1138..16ae6395489b6d5e7c3e1690d383f39b64683fce 100644
|
| --- a/components/domain_reliability/scheduler_unittest.cc
|
| +++ b/components/domain_reliability/scheduler_unittest.cc
|
| @@ -21,7 +21,7 @@ class DomainReliabilitySchedulerTest : public testing::Test {
|
| public:
|
| DomainReliabilitySchedulerTest()
|
| : num_collectors_(0),
|
| - params_(CreateDefaultParams()),
|
| + params_(MakeTestSchedulerParams()),
|
| callback_called_(false) {}
|
|
|
| void CreateScheduler(int num_collectors) {
|
| @@ -37,14 +37,6 @@ class DomainReliabilitySchedulerTest : public testing::Test {
|
| base::Unretained(this))));
|
| }
|
|
|
| - static DomainReliabilityScheduler::Params CreateDefaultParams() {
|
| - DomainReliabilityScheduler::Params params;
|
| - params.minimum_upload_delay = base::TimeDelta::FromSeconds(60);
|
| - params.maximum_upload_delay = base::TimeDelta::FromSeconds(300);
|
| - params.upload_retry_interval = base::TimeDelta::FromSeconds(15);
|
| - return params;
|
| - }
|
| -
|
| ::testing::AssertionResult CheckNoPendingUpload() {
|
| DCHECK(scheduler_);
|
|
|
|
|