Index: net/quic/quic_headers_stream_test.cc |
diff --git a/net/quic/quic_headers_stream_test.cc b/net/quic/quic_headers_stream_test.cc |
index a821fb2a67848cd697c88e9febf4888c6e02aab0..2cae45f336ce32a9016066510f5e773229e00ace 100644 |
--- a/net/quic/quic_headers_stream_test.cc |
+++ b/net/quic/quic_headers_stream_test.cc |
@@ -176,7 +176,7 @@ class QuicHeadersStreamTest : public ::testing::TestWithParam<TestParams> { |
SpdyPriority priority, |
SpdyFrameType type) { |
// Write the headers and capture the outgoing data |
- EXPECT_CALL(session_, WritevData(kHeadersStreamId, _, _, false, _, nullptr)) |
+ EXPECT_CALL(session_, WritevData(kHeadersStreamId, _, _, false, nullptr)) |
.WillOnce(WithArgs<1>(Invoke(this, &QuicHeadersStreamTest::SaveIov))); |
headers_stream_->WriteHeaders(stream_id, headers_, fin, priority, nullptr); |
@@ -276,8 +276,7 @@ TEST_P(QuicHeadersStreamTest, WritePushPromises) { |
QuicStreamId promised_stream_id = NextPromisedStreamId(); |
if (perspective() == Perspective::IS_SERVER) { |
// Write the headers and capture the outgoing data |
- EXPECT_CALL(session_, |
- WritevData(kHeadersStreamId, _, _, false, _, nullptr)) |
+ EXPECT_CALL(session_, WritevData(kHeadersStreamId, _, _, false, nullptr)) |
.WillOnce(WithArgs<1>(Invoke(this, &QuicHeadersStreamTest::SaveIov))); |
headers_stream_->WritePushPromise(stream_id, promised_stream_id, headers_, |
nullptr); |