| Index: net/quic/quic_session_test.cc
|
| diff --git a/net/quic/quic_session_test.cc b/net/quic/quic_session_test.cc
|
| index 7b5925a858110ec4fbf5c287eae059cd71e9a7ad..d37b42f6c96926ba367ae2cdd0625c68175d3bb1 100644
|
| --- a/net/quic/quic_session_test.cc
|
| +++ b/net/quic/quic_session_test.cc
|
| @@ -496,7 +496,8 @@ TEST_P(QuicSessionTestServer, OnCanWriteBundlesStreams) {
|
|
|
| // Drive congestion control manually.
|
| MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>;
|
| - QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm);
|
| + QuicConnectionPeer::SetSendAlgorithm(session_.connection(), kDefaultPathId,
|
| + send_algorithm);
|
|
|
| TestStream* stream2 = session_.CreateOutgoingDynamicStream(kDefaultPriority);
|
| TestStream* stream4 = session_.CreateOutgoingDynamicStream(kDefaultPriority);
|
| @@ -539,7 +540,8 @@ TEST_P(QuicSessionTestServer, OnCanWriteCongestionControlBlocks) {
|
|
|
| // Drive congestion control manually.
|
| MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>;
|
| - QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm);
|
| + QuicConnectionPeer::SetSendAlgorithm(session_.connection(), kDefaultPathId,
|
| + send_algorithm);
|
|
|
| TestStream* stream2 = session_.CreateOutgoingDynamicStream(kDefaultPriority);
|
| TestStream* stream4 = session_.CreateOutgoingDynamicStream(kDefaultPriority);
|
|
|