| Index: net/quic/quic_server_session_base_test.cc
|
| diff --git a/net/quic/quic_server_session_base_test.cc b/net/quic/quic_server_session_base_test.cc
|
| index 980fdb19bb1137f616594be2d49e143264183d28..0d40b471aef5e377efe5a9f39b6d2323835756bf 100644
|
| --- a/net/quic/quic_server_session_base_test.cc
|
| +++ b/net/quic/quic_server_session_base_test.cc
|
| @@ -406,7 +406,6 @@ TEST_P(QuicServerSessionBaseTest, BandwidthEstimates) {
|
| // Client has sent kBWRE connection option to trigger bandwidth resumption.
|
| // Disable this flag because if connection uses multipath sent packet manager,
|
| // static_cast here does not work.
|
| - FLAGS_quic_enable_multipath = false;
|
| QuicTagVector copt;
|
| copt.push_back(kBWRE);
|
| QuicConfigPeer::SetReceivedConnectionOptions(session_->config(), copt);
|
| @@ -426,8 +425,8 @@ TEST_P(QuicServerSessionBaseTest, BandwidthEstimates) {
|
|
|
| // Set some initial bandwidth values.
|
| QuicSentPacketManager* sent_packet_manager =
|
| - static_cast<QuicSentPacketManager*>(
|
| - QuicConnectionPeer::GetSentPacketManager(session_->connection()));
|
| + QuicConnectionPeer::GetSentPacketManager(session_->connection(),
|
| + kDefaultPathId);
|
| QuicSustainedBandwidthRecorder& bandwidth_recorder =
|
| QuicSentPacketManagerPeer::GetBandwidthRecorder(sent_packet_manager);
|
| // Seed an rtt measurement equal to the initial default rtt.
|
|
|