From 26080e900c1bf159e36b9d70c2ada5ae8ecf2838 Mon Sep 17 00:00:00 2001 From: Shane Utt Date: Tue, 14 Mar 2023 13:59:40 -0400 Subject: [PATCH] fix: use ListenerConditionAccepted for listener conds instead of RouteConditionAccepted --- conformance/tests/gateway-with-attached-routes.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conformance/tests/gateway-with-attached-routes.go b/conformance/tests/gateway-with-attached-routes.go index 1f552ff233..14ca1d711b 100644 --- a/conformance/tests/gateway-with-attached-routes.go +++ b/conformance/tests/gateway-with-attached-routes.go @@ -45,7 +45,7 @@ var GatewayWithAttachedRoutes = suite.ConformanceTest{ Kind: v1beta1.Kind("HTTPRoute"), }}, Conditions: []metav1.Condition{{ - Type: string(v1beta1.RouteConditionAccepted), + Type: string(v1beta1.ListenerConditionAccepted), Status: metav1.ConditionTrue, Reason: "", //any reason }}, @@ -64,7 +64,7 @@ var GatewayWithAttachedRoutes = suite.ConformanceTest{ Kind: v1beta1.Kind("HTTPRoute"), }}, Conditions: []metav1.Condition{{ - Type: string(v1beta1.RouteConditionAccepted), + Type: string(v1beta1.ListenerConditionAccepted), Status: metav1.ConditionTrue, Reason: "", //any reason }},