From f8ae66efab4cf167f25caa70b51e56b2feb2cac8 Mon Sep 17 00:00:00 2001 From: Fredrik Larsson Date: Thu, 6 Jul 2023 11:35:35 +0200 Subject: [PATCH] Remove unnecessary test --- source/gateway_httproute_test.go | 37 -------------------------------- 1 file changed, 37 deletions(-) diff --git a/source/gateway_httproute_test.go b/source/gateway_httproute_test.go index 942fec9b6..f57969ec4 100644 --- a/source/gateway_httproute_test.go +++ b/source/gateway_httproute_test.go @@ -1070,43 +1070,6 @@ func TestGatewayHTTPRouteSourceEndpoints(t *testing.T) { newTestEndpoint("test.example.internal", "A", "4.3.2.1"), }, }, - { - title: "AnnotationOverrideMultipleStatusAddresses", - config: Config{ - GatewayNamespace: "gateway-namespace", - }, - namespaces: namespaces("gateway-namespace", "route-namespace"), - gateways: []*v1beta1.Gateway{ - { - ObjectMeta: metav1.ObjectMeta{ - Name: "overriden-gateway", - Namespace: "gateway-namespace", - Annotations: map[string]string{ - targetAnnotationKey: "4.3.2.1", - }, - }, - Spec: v1beta1.GatewaySpec{ - Listeners: []v1beta1.Listener{{ - Protocol: v1beta1.HTTPProtocolType, - AllowedRoutes: allowAllNamespaces, - }}, - }, - Status: gatewayStatus("1.2.3.4", "2.3.4.5"), - }, - }, - routes: []*v1beta1.HTTPRoute{{ - ObjectMeta: objectMeta("route-namespace", "test"), - Spec: v1beta1.HTTPRouteSpec{ - Hostnames: hostnames("test.example.internal"), - }, - Status: httpRouteStatus( // The route is attached to both gateways. - gatewayParentRef("gateway-namespace", "overriden-gateway"), - ), - }}, - endpoints: []*endpoint.Endpoint{ - newTestEndpoint("test.example.internal", "A", "4.3.2.1"), - }, - }, { title: "MutlipleGatewaysOneAnnotationOverride", config: Config{