summaryrefslogtreecommitdiffstats
path: root/net/quic/quic_flow_controller_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/quic/quic_flow_controller_test.cc')
-rw-r--r--net/quic/quic_flow_controller_test.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/net/quic/quic_flow_controller_test.cc b/net/quic/quic_flow_controller_test.cc
index 64705765..71bfa1b 100644
--- a/net/quic/quic_flow_controller_test.cc
+++ b/net/quic/quic_flow_controller_test.cc
@@ -77,10 +77,9 @@ TEST_F(QuicFlowControllerTest, SendingBytes) {
// Try to send more bytes, violating flow control.
EXPECT_CALL(connection_,
SendConnectionClose(QUIC_FLOW_CONTROL_SENT_TOO_MUCH_DATA));
- EXPECT_DFATAL(
- flow_controller_->AddBytesSent(send_window_ * 10),
- base::StringPrintf("Trying to send an extra %" PRIu64 " bytes",
- send_window_ * 10));
+ EXPECT_DFATAL(flow_controller_->AddBytesSent(send_window_ * 10),
+ base::StringPrintf("Trying to send an extra %" PRIu64 " bytes",
+ send_window_ * 10));
EXPECT_TRUE(flow_controller_->IsBlocked());
EXPECT_EQ(0u, flow_controller_->SendWindowSize());
}