diff --git a/test/e2e/tests/httproute_mixed_protocols.go b/test/e2e/tests/httproute_mixed_protocols.go index f6cb32ed75..c8728be557 100644 --- a/test/e2e/tests/httproute_mixed_protocols.go +++ b/test/e2e/tests/httproute_mixed_protocols.go @@ -85,7 +85,8 @@ var HTTPRouteMixedProtocols = suite.ConformanceTest{ } for _, res := range responses { - http.MakeRequestAndExpectEventuallyConsistentResponse(t, suite.RoundTripper, suite.TimeoutConfig, gwAddr, res) + req := http.MakeRequest(t, &res, gwAddr, "HTTP", "http") + http.WaitForConsistentResponse(t, suite.RoundTripper, req, res, 1, suite.TimeoutConfig.MaxTimeToConsistency) } }, }