| Index: net/dns/dns_transaction_unittest.cc
|
| diff --git a/net/dns/dns_transaction_unittest.cc b/net/dns/dns_transaction_unittest.cc
|
| index c3c4c8f9bfa32fe01d19fedc82ebbc731f979bd6..3266b9cfab0f4ab1791b988f46e52a0e319cf165 100644
|
| --- a/net/dns/dns_transaction_unittest.cc
|
| +++ b/net/dns/dns_transaction_unittest.cc
|
| @@ -645,6 +645,7 @@ TEST_F(DnsTransactionTest, ServerFallbackAndRotate) {
|
| AddAsyncQueryAndRcode(kT0HostName, kT0Qtype, dns_protocol::kRcodeNXDOMAIN);
|
| // Responses for second request.
|
| AddAsyncQueryAndRcode(kT1HostName, kT1Qtype, dns_protocol::kRcodeSERVFAIL);
|
| + AddAsyncQueryAndRcode(kT1HostName, kT1Qtype, dns_protocol::kRcodeSERVFAIL);
|
| AddAsyncQueryAndRcode(kT1HostName, kT1Qtype, dns_protocol::kRcodeNXDOMAIN);
|
|
|
| TransactionHelper helper0(kT0HostName, kT0Qtype, ERR_NAME_NOT_RESOLVED);
|
| @@ -655,7 +656,7 @@ TEST_F(DnsTransactionTest, ServerFallbackAndRotate) {
|
|
|
| unsigned kOrder[] = {
|
| 0, 1, 2, 0, 1, // The first transaction.
|
| - 1, 2, // The second transaction starts from the next server.
|
| + 1, 2, 0, // The second transaction starts from the next server.
|
| };
|
| CheckServerOrder(kOrder, arraysize(kOrder));
|
| }
|
|
|