From 53aa011890f1aa09a9fdfb5e7b381a721d59d326 Mon Sep 17 00:00:00 2001 From: huabing zhao Date: Fri, 17 May 2024 11:43:58 -0700 Subject: [PATCH] fix e2e test Signed-off-by: huabing zhao --- test/e2e/tests/authorization-default-action.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/tests/authorization-default-action.go b/test/e2e/tests/authorization-default-action.go index 68740fe8a80d..1a58c32e381d 100644 --- a/test/e2e/tests/authorization-default-action.go +++ b/test/e2e/tests/authorization-default-action.go @@ -32,7 +32,7 @@ var AuthorizationDefaultActionTest = suite.ConformanceTest{ Test: func(t *testing.T, suite *suite.ConformanceTestSuite) { ns := "gateway-conformance-infra" route1NN := types.NamespacedName{Name: "http-with-authorization-empty", Namespace: ns} - route2NN := types.NamespacedName{Name: "http-with-allow-all", Namespace: ns} + route2NN := types.NamespacedName{Name: "http-with-authorization-allow-all", Namespace: ns} gwNN := types.NamespacedName{Name: "same-namespace", Namespace: ns} gwAddr := kubernetes.GatewayAndHTTPRoutesMustBeAccepted(t, suite.Client, suite.TimeoutConfig, suite.ControllerName, kubernetes.NewGatewayRef(gwNN), route1NN, route2NN)