| Index: net/quic/quic_network_transaction_unittest.cc
|
| diff --git a/net/quic/quic_network_transaction_unittest.cc b/net/quic/quic_network_transaction_unittest.cc
|
| index 293beec8a5d4203fabd66c4c1df8ccb97b5133f0..021ebfc239dc9afc23feb49f293d8b50f726977b 100644
|
| --- a/net/quic/quic_network_transaction_unittest.cc
|
| +++ b/net/quic/quic_network_transaction_unittest.cc
|
| @@ -41,13 +41,13 @@ namespace {
|
|
|
| // This is the expected return from a current server advertising QUIC.
|
| static const char kQuicAlternateProtocolHttpHeader[] =
|
| - "Alternate-Protocol: 443:quic/1\r\n\r\n";
|
| + "Alternate-Protocol: 443:quic\r\n\r\n";
|
|
|
| // Returns a vector of NPN protocol strings for negotiating QUIC.
|
| std::vector<std::string> QuicNextProtos() {
|
| std::vector<std::string> protos;
|
| protos.push_back("http/1.1");
|
| - protos.push_back("quic/1");
|
| + protos.push_back("quic");
|
| return protos;
|
| }
|
|
|
|
|