Index: net/tools/quic/quic_client_session_test.cc |
diff --git a/net/tools/quic/quic_client_session_test.cc b/net/tools/quic/quic_client_session_test.cc |
index 96b4c5cf83ee5c98020bf4cfd19c89e3b371ec3c..6de227e67b338cf81e0dbfb34fb184ee2dd9fbea 100644 |
--- a/net/tools/quic/quic_client_session_test.cc |
+++ b/net/tools/quic/quic_client_session_test.cc |
@@ -59,13 +59,13 @@ TEST_F(ToolsQuicClientSessionTest, MaxNumStreams) { |
CompleteCryptoHandshake(); |
QuicSpdyClientStream* stream = |
- session_->CreateOutgoingReliableStream(); |
+ session_->CreateOutgoingDataStream(); |
ASSERT_TRUE(stream); |
- EXPECT_FALSE(session_->CreateOutgoingReliableStream()); |
+ EXPECT_FALSE(session_->CreateOutgoingDataStream()); |
// Close a stream and ensure I can now open a new one. |
session_->CloseStream(stream->id()); |
- stream = session_->CreateOutgoingReliableStream(); |
+ stream = session_->CreateOutgoingDataStream(); |
EXPECT_TRUE(stream); |
} |
@@ -75,7 +75,7 @@ TEST_F(ToolsQuicClientSessionTest, GoAwayReceived) { |
// After receiving a GoAway, I should no longer be able to create outgoing |
// streams. |
session_->OnGoAway(QuicGoAwayFrame(QUIC_PEER_GOING_AWAY, 1u, "Going away.")); |
- EXPECT_EQ(NULL, session_->CreateOutgoingReliableStream()); |
+ EXPECT_EQ(NULL, session_->CreateOutgoingDataStream()); |
} |
} // namespace |