Index: net/quic/core/congestion_control/cubic_test.cc |
diff --git a/net/quic/core/congestion_control/cubic_test.cc b/net/quic/core/congestion_control/cubic_test.cc |
index c7e31266e6b220ee2cf7d2704f8d4a0c6aae4081..47733b7d0877d296da89f8a36eef50421a657525 100644 |
--- a/net/quic/core/congestion_control/cubic_test.cc |
+++ b/net/quic/core/congestion_control/cubic_test.cc |
@@ -58,18 +58,6 @@ std::vector<TestParams> GetTestParams() { |
for (bool fix_convex_mode : {true, false}) { |
for (bool fix_beta_last_max : {true, false}) { |
for (bool allow_per_ack_updates : {true, false}) { |
- if (!FLAGS_quic_reloadable_flag_quic_fix_cubic_convex_mode && |
- fix_convex_mode) { |
- continue; |
- } |
- if (!FLAGS_quic_reloadable_flag_quic_fix_beta_last_max && |
- fix_beta_last_max) { |
- continue; |
- } |
- if (!FLAGS_quic_reloadable_flag_quic_enable_cubic_per_ack_updates && |
- allow_per_ack_updates) { |
- continue; |
- } |
TestParams param(fix_convex_mode, fix_beta_last_max, |
allow_per_ack_updates); |
params.push_back(param); |