Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1321)

Unified Diff: net/tools/quic/end_to_end_test.cc

Issue 843213002: Removing deprecated flag FLAGS_allow_truncated_connection_ids_for_quic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed cleanup changes that are not part of this CL Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/quic_stream_factory.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/end_to_end_test.cc
diff --git a/net/tools/quic/end_to_end_test.cc b/net/tools/quic/end_to_end_test.cc
index f7afb506088670673dc40329d45c1c2fb8cc3096..50e0bf3e86b03d8a2826ac265dd1c0508494a2a8 100644
--- a/net/tools/quic/end_to_end_test.cc
+++ b/net/tools/quic/end_to_end_test.cc
@@ -1002,8 +1002,6 @@ TEST_P(EndToEndTest, MinInitialRTT) {
}
TEST_P(EndToEndTest, 0ByteConnectionId) {
- ValueRestore<bool> old_flag(&FLAGS_allow_truncated_connection_ids_for_quic,
- true);
client_config_.SetBytesForConnectionIdToSend(0);
ASSERT_TRUE(Initialize());
@@ -1017,8 +1015,6 @@ TEST_P(EndToEndTest, 0ByteConnectionId) {
}
TEST_P(EndToEndTest, 1ByteConnectionId) {
- ValueRestore<bool> old_flag(&FLAGS_allow_truncated_connection_ids_for_quic,
- true);
client_config_.SetBytesForConnectionIdToSend(1);
ASSERT_TRUE(Initialize());
@@ -1031,8 +1027,6 @@ TEST_P(EndToEndTest, 1ByteConnectionId) {
}
TEST_P(EndToEndTest, 4ByteConnectionId) {
- ValueRestore<bool> old_flag(&FLAGS_allow_truncated_connection_ids_for_quic,
- true);
client_config_.SetBytesForConnectionIdToSend(4);
ASSERT_TRUE(Initialize());
@@ -1045,8 +1039,6 @@ TEST_P(EndToEndTest, 4ByteConnectionId) {
}
TEST_P(EndToEndTest, 8ByteConnectionId) {
- ValueRestore<bool> old_flag(&FLAGS_allow_truncated_connection_ids_for_quic,
- true);
client_config_.SetBytesForConnectionIdToSend(8);
ASSERT_TRUE(Initialize());
@@ -1059,8 +1051,6 @@ TEST_P(EndToEndTest, 8ByteConnectionId) {
}
TEST_P(EndToEndTest, 15ByteConnectionId) {
- ValueRestore<bool> old_flag(&FLAGS_allow_truncated_connection_ids_for_quic,
- true);
client_config_.SetBytesForConnectionIdToSend(15);
ASSERT_TRUE(Initialize());
« no previous file with comments | « net/quic/quic_stream_factory.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698