| Index: net/quic/core/quic_framer_test.cc
|
| diff --git a/net/quic/core/quic_framer_test.cc b/net/quic/core/quic_framer_test.cc
|
| index 1d00d732a308b154a7d882ed2361f67e06d4e4f2..0ce097352de99b25e06355b2decc2a74e1d64b00 100644
|
| --- a/net/quic/core/quic_framer_test.cc
|
| +++ b/net/quic/core/quic_framer_test.cc
|
| @@ -4904,8 +4904,7 @@ TEST_P(QuicFramerTest, BuildStreamFramePacketWithVersionFlag) {
|
| unsigned char packet[] = {
|
| // public flags (version, 8 byte connection_id)
|
| static_cast<unsigned char>(
|
| - (FLAGS_quic_remove_v33_hacks &&
|
| - framer_.version() > QUIC_VERSION_32) ? 0x39 : 0x3D),
|
| + framer_.version() > QUIC_VERSION_32 ? 0x39 : 0x3D),
|
| // connection_id
|
| 0x10, 0x32, 0x54, 0x76, 0x98, 0xBA, 0xDC, 0xFE,
|
| // version tag
|
| @@ -4926,8 +4925,7 @@ TEST_P(QuicFramerTest, BuildStreamFramePacketWithVersionFlag) {
|
| };
|
| unsigned char packet_34[] = {
|
| // public flags (version, 8 byte connection_id)
|
| - static_cast<unsigned char>(
|
| - FLAGS_quic_remove_v33_hacks ? 0x39 : 0x3D),
|
| + 0x39,
|
| // connection_id
|
| 0x10, 0x32, 0x54, 0x76, 0x98, 0xBA, 0xDC, 0xFE,
|
| // version tag
|
| @@ -5059,8 +5057,7 @@ TEST_P(QuicFramerTest, BuildStreamFramePacketWithBothVersionAndMultipathFlag) {
|
| unsigned char packet[] = {
|
| // public flags (8 byte connection_id)
|
| static_cast<unsigned char>(
|
| - (FLAGS_quic_remove_v33_hacks &&
|
| - framer_.version() > QUIC_VERSION_32) ? 0x79 : 0x7D),
|
| + framer_.version() > QUIC_VERSION_32 ? 0x79 : 0x7D),
|
| // connection_id
|
| 0x10, 0x32, 0x54, 0x76,
|
| 0x98, 0xBA, 0xDC, 0xFE,
|
| @@ -5088,8 +5085,7 @@ TEST_P(QuicFramerTest, BuildStreamFramePacketWithBothVersionAndMultipathFlag) {
|
| };
|
| unsigned char packet_34[] = {
|
| // public flags (8 byte connection_id)
|
| - static_cast<unsigned char>(
|
| - FLAGS_quic_remove_v33_hacks ? 0x79 : 0x7D),
|
| + 0x79,
|
| // connection_id
|
| 0x10, 0x32, 0x54, 0x76,
|
| 0x98, 0xBA, 0xDC, 0xFE,
|
|
|