| Index: net/quic/quic_crypto_client_stream_test.cc
|
| diff --git a/net/quic/quic_crypto_client_stream_test.cc b/net/quic/quic_crypto_client_stream_test.cc
|
| index a840c3c31cf2c11ea7bcafa26aaebeba45154b70..96547e42fc6b9272a5ce5f6017e049295280869f 100644
|
| --- a/net/quic/quic_crypto_client_stream_test.cc
|
| +++ b/net/quic/quic_crypto_client_stream_test.cc
|
| @@ -98,7 +98,8 @@ TEST_F(QuicCryptoClientStreamTest, NotInitiallyConected) {
|
| return;
|
| }
|
|
|
| - EXPECT_FALSE(stream_.handshake_complete());
|
| + EXPECT_FALSE(stream_.encryption_established());
|
| + EXPECT_FALSE(stream_.handshake_confirmed());
|
| }
|
|
|
| TEST_F(QuicCryptoClientStreamTest, ConnectedAfterSHLO) {
|
| @@ -108,7 +109,8 @@ TEST_F(QuicCryptoClientStreamTest, ConnectedAfterSHLO) {
|
| }
|
|
|
| CompleteCryptoHandshake();
|
| - EXPECT_TRUE(stream_.handshake_complete());
|
| + EXPECT_TRUE(stream_.encryption_established());
|
| + EXPECT_TRUE(stream_.handshake_confirmed());
|
| }
|
|
|
| TEST_F(QuicCryptoClientStreamTest, MessageAfterHandshake) {
|
|
|