diff options
Diffstat (limited to 'net/socket/ssl_client_socket_unittest.cc')
-rw-r--r-- | net/socket/ssl_client_socket_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/socket/ssl_client_socket_unittest.cc b/net/socket/ssl_client_socket_unittest.cc index 77a0aab..019ccc8 100644 --- a/net/socket/ssl_client_socket_unittest.cc +++ b/net/socket/ssl_client_socket_unittest.cc @@ -2373,7 +2373,7 @@ TEST(SSLClientSocket, SerializeNextProtos) { next_protos.push_back(kProtoHTTP11); next_protos.push_back(kProtoSPDY31); static std::vector<uint8_t> serialized = - SSLClientSocket::SerializeNextProtos(next_protos, true); + SSLClientSocket::SerializeNextProtos(next_protos); ASSERT_EQ(18u, serialized.size()); EXPECT_EQ(8, serialized[0]); // length("http/1.1") EXPECT_EQ('h', serialized[1]); |