| Index: chrome/browser/net/dns_master_unittest.cc
|
| ===================================================================
|
| --- chrome/browser/net/dns_master_unittest.cc (revision 19579)
|
| +++ chrome/browser/net/dns_master_unittest.cc (working copy)
|
| @@ -285,7 +285,7 @@
|
| EXPECT_GT(testing_master->peak_pending_lookups(), names.size() / 2);
|
| EXPECT_LE(testing_master->peak_pending_lookups(), names.size());
|
| EXPECT_LE(testing_master->peak_pending_lookups(),
|
| - DnsPrefetcherInit::kMaxConcurrentLookups);
|
| + testing_master->max_concurrent_lookups());
|
|
|
| testing_master->Shutdown();
|
| }
|
| @@ -340,7 +340,7 @@
|
| EXPECT_GT(testing_master->peak_pending_lookups(), names.size() / 2);
|
| EXPECT_LE(testing_master->peak_pending_lookups(), names.size());
|
| EXPECT_LE(testing_master->peak_pending_lookups(),
|
| - DnsPrefetcherInit::kMaxConcurrentLookups);
|
| + testing_master->max_concurrent_lookups());
|
|
|
| testing_master->Shutdown();
|
| }
|
| @@ -366,7 +366,7 @@
|
|
|
| EXPECT_LE(testing_master->peak_pending_lookups(), names.size());
|
| EXPECT_LE(testing_master->peak_pending_lookups(),
|
| - DnsPrefetcherInit::kMaxConcurrentLookups);
|
| + testing_master->max_concurrent_lookups());
|
|
|
| testing_master->Shutdown();
|
| }
|
|
|