| Index: net/quic/quic_connection_test.cc
|
| diff --git a/net/quic/quic_connection_test.cc b/net/quic/quic_connection_test.cc
|
| index fb4cf89789f14ede2ff1c218f454a1ede50db76e..9f79abc03f5e98c30000b3ab54d3d783cf932bb5 100644
|
| --- a/net/quic/quic_connection_test.cc
|
| +++ b/net/quic/quic_connection_test.cc
|
| @@ -2568,15 +2568,13 @@ TEST_P(QuicConnectionTest, NoQuicCongestionFeedbackFrame) {
|
|
|
| TEST_P(QuicConnectionTest, WithQuicCongestionFeedbackFrame) {
|
| QuicCongestionFeedbackFrame info;
|
| - info.type = kFixRate;
|
| - info.fix_rate.bitrate = QuicBandwidth::FromBytesPerSecond(123);
|
| + info.type = kTCP;
|
| + info.tcp.receive_window = 0x4030;
|
| SetFeedback(&info);
|
|
|
| SendAckPacketToPeer();
|
| ASSERT_FALSE(writer_->feedback_frames().empty());
|
| - ASSERT_EQ(kFixRate, writer_->feedback_frames()[0].type);
|
| - ASSERT_EQ(info.fix_rate.bitrate,
|
| - writer_->feedback_frames()[0].fix_rate.bitrate);
|
| + ASSERT_EQ(kTCP, writer_->feedback_frames()[0].type);
|
| }
|
|
|
| TEST_P(QuicConnectionTest, UpdateQuicCongestionFeedbackFrame) {
|
|
|