| Index: net/http/http_network_transaction_unittest.cc
|
| diff --git a/net/http/http_network_transaction_unittest.cc b/net/http/http_network_transaction_unittest.cc
|
| index ccd153601a1935c9570eee1a0abcd9c76e69d7af..26ce8fa29f5ecd4ef62870975c1fd0ee0651b1e9 100644
|
| --- a/net/http/http_network_transaction_unittest.cc
|
| +++ b/net/http/http_network_transaction_unittest.cc
|
| @@ -12293,6 +12293,7 @@ TEST_F(HttpNetworkTransactionTest, GenerateAuthToken) {
|
| std::vector<std::vector<MockRead>> mock_reads(1);
|
| std::vector<std::vector<MockWrite>> mock_writes(1);
|
| for (int round = 0; round < test_config.num_auth_rounds; ++round) {
|
| + SCOPED_TRACE(round);
|
| const TestRound& read_write_round = test_config.rounds[round];
|
|
|
| // Set up expected reads and writes.
|
| @@ -12333,6 +12334,7 @@ TEST_F(HttpNetworkTransactionTest, GenerateAuthToken) {
|
| HttpNetworkTransaction trans(DEFAULT_PRIORITY, session.get());
|
|
|
| for (int round = 0; round < test_config.num_auth_rounds; ++round) {
|
| + SCOPED_TRACE(round);
|
| const TestRound& read_write_round = test_config.rounds[round];
|
| // Start or restart the transaction.
|
| TestCompletionCallback callback;
|
|
|