| 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 3e24ccb9c38b6fee6a3f289e6677666d35579bfc..ed42db6ecc3918ace57eb1e782cadb09ac88f239 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) {
|
|
|