| Index: net/quic/quic_http_stream_test.cc
|
| diff --git a/net/quic/quic_http_stream_test.cc b/net/quic/quic_http_stream_test.cc
|
| index 74979b32b10e95d03a053d9b33205a674e0ca512..c3bcf256cd93f3c825131e8cb7835c4dc24cd475 100644
|
| --- a/net/quic/quic_http_stream_test.cc
|
| +++ b/net/quic/quic_http_stream_test.cc
|
| @@ -162,7 +162,8 @@ class QuicHttpStreamTest : public ::testing::TestWithParam<QuicVersion> {
|
| }
|
|
|
| bool AtEof() {
|
| - return socket_data_->at_read_eof() && socket_data_->at_write_eof();
|
| + return socket_data_->AllReadDataConsumed() &&
|
| + socket_data_->AllWriteDataConsumed();
|
| }
|
|
|
| void ProcessPacket(scoped_ptr<QuicEncryptedPacket> packet) {
|
|
|