| Index: net/quic/quic_connection_test.cc
|
| diff --git a/net/quic/quic_connection_test.cc b/net/quic/quic_connection_test.cc
|
| index c16ddabda229fd1612676bab3808822e0fa363f4..405f2e01323da610e1974aaf4b970eeb39b5dd54 100644
|
| --- a/net/quic/quic_connection_test.cc
|
| +++ b/net/quic/quic_connection_test.cc
|
| @@ -4676,7 +4676,7 @@ TEST_P(QuicConnectionTest, Blocked) {
|
| QuicBlockedFrame blocked;
|
| blocked.stream_id = 3;
|
| EXPECT_CALL(visitor_, OnBlockedFrame(_));
|
| - ProcessFramePacket(QuicFrame(&blocked));
|
| + ProcessFramePacket(QuicFrame(blocked));
|
| }
|
|
|
| TEST_P(QuicConnectionTest, ZeroBytePacket) {
|
| @@ -5460,7 +5460,7 @@ TEST_P(QuicConnectionTest, BlockedFrameInstigateAcks) {
|
| QuicBlockedFrame blocked;
|
| blocked.stream_id = 3;
|
| EXPECT_CALL(visitor_, OnBlockedFrame(_));
|
| - ProcessFramePacket(QuicFrame(&blocked));
|
| + ProcessFramePacket(QuicFrame(blocked));
|
|
|
| // Ensure that this has caused the ACK alarm to be set.
|
| QuicAlarm* ack_alarm = QuicConnectionPeer::GetAckAlarm(&connection_);
|
|
|