Index: net/http/bidirectional_stream_unittest.cc |
diff --git a/net/http/bidirectional_stream_unittest.cc b/net/http/bidirectional_stream_unittest.cc |
index 2b295361ca6db9f77d78f4d276e5b51c88abc8ab..07177a81504dc75fd24015a7a9ea0d77c564e3b3 100644 |
--- a/net/http/bidirectional_stream_unittest.cc |
+++ b/net/http/bidirectional_stream_unittest.cc |
@@ -1195,8 +1195,7 @@ TEST_F(BidirectionalStreamTest, PropagateProtocolError) { |
// BidirectionalStreamSpdyStreamJob does not count the bytes sent for |rst| |
// because it is sent after SpdyStream::Delegate::OnClose is called. |
EXPECT_EQ(CountWriteBytes(writes, 1), delegate->GetTotalSentBytes()); |
- EXPECT_EQ(CountReadBytes(reads, arraysize(reads)), |
- delegate->GetTotalReceivedBytes()); |
+ EXPECT_EQ(0, delegate->GetTotalReceivedBytes()); |
Ryan Hamilton
2016/05/13 22:03:15
Can you explain why this expectation is changing?
dahollings
2016/05/16 22:00:17
The coalescer (new file) was catching the invalid
|
} |
INSTANTIATE_TEST_CASE_P(CancelOrDeleteTests, |