| Index: chrome/common/net/url_fetcher_unittest.cc
|
| ===================================================================
|
| --- chrome/common/net/url_fetcher_unittest.cc (revision 56201)
|
| +++ chrome/common/net/url_fetcher_unittest.cc (working copy)
|
| @@ -312,7 +312,9 @@
|
| // Now running ServerUnavailable test.
|
| // It takes more than 1 second to finish all 11 requests.
|
| EXPECT_TRUE(Time::Now() - start_time_ >= one_second);
|
| - EXPECT_TRUE(status.is_success());
|
| + // We used to check this, but it gets confused because of the other
|
| + // implementation of request throttling (which we will be removing).
|
| + //EXPECT_EQ(status.os_error(), net::ERR_TEMPORARILY_THROTTLED_BY_DDOS);
|
| EXPECT_FALSE(data.empty());
|
| delete fetcher_;
|
| io_message_loop_proxy()->PostTask(FROM_HERE, new MessageLoop::QuitTask());
|
|
|