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

Unified Diff: net/quic/core/quic_version_manager_test.cc

Issue 2809723002: Let QUIC_VERSION_38 support IETF PADDING frame (1 byte frame with type 0x00) and respect NSTP conne… (Closed)
Patch Set: Remove old FLAGS_quic_enable_version_38 Created 3 years, 8 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/core/quic_version_manager.cc ('k') | net/quic/core/quic_versions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_version_manager_test.cc
diff --git a/net/quic/core/quic_version_manager_test.cc b/net/quic/core/quic_version_manager_test.cc
index 22faf092e4c3a034225d166eb089648619196a0e..b6a963c948e9896548b38d63f73a8fa45352d905 100644
--- a/net/quic/core/quic_version_manager_test.cc
+++ b/net/quic/core/quic_version_manager_test.cc
@@ -16,8 +16,8 @@ namespace {
TEST(QuicVersionManagerTest, QuicVersionManager) {
QuicFlagSaver flags;
- FLAGS_quic_enable_version_38 = false;
FLAGS_quic_reloadable_flag_quic_enable_version_36_v3 = false;
+ FLAGS_quic_reloadable_flag_quic_enable_version_38 = false;
FLAGS_quic_reloadable_flag_quic_enable_version_37 = false;
FLAGS_quic_reloadable_flag_quic_disable_version_34 = false;
QuicVersionManager manager(AllSupportedVersions());
@@ -41,7 +41,7 @@ TEST(QuicVersionManagerTest, QuicVersionManager) {
EXPECT_EQ(QUIC_VERSION_35, manager.GetSupportedVersions()[2]);
EXPECT_EQ(QUIC_VERSION_34, manager.GetSupportedVersions()[3]);
- FLAGS_quic_enable_version_38 = true;
+ FLAGS_quic_reloadable_flag_quic_enable_version_38 = true;
EXPECT_EQ(FilterSupportedVersions(AllSupportedVersions()),
manager.GetSupportedVersions());
ASSERT_EQ(5u, manager.GetSupportedVersions().size());
« no previous file with comments | « net/quic/core/quic_version_manager.cc ('k') | net/quic/core/quic_versions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698