Fix end-to-end test EXPECT_TRUE condition for multi-port path creation on RTO. The test should wait until the path response received is equal to or more than 3. Forward-fix on cl/772554253. PiperOrigin-RevId: 773131018
diff --git a/quiche/quic/core/http/end_to_end_test.cc b/quiche/quic/core/http/end_to_end_test.cc index 090ef6d..cc935f0 100644 --- a/quiche/quic/core/http/end_to_end_test.cc +++ b/quiche/quic/core/http/end_to_end_test.cc
@@ -5871,7 +5871,7 @@ // Verify new path is validated after establishing a new multiport connection. // Sometimes the path validation is trigerred more than 3 times. EXPECT_TRUE(client_->WaitUntil(2000, [&]() { - return 3u >= client_connection->GetStats().num_path_response_received; + return 3u <= client_connection->GetStats().num_path_response_received; })); stream->Reset(QuicRstStreamErrorCode::QUIC_STREAM_NO_ERROR);