From 4dcb1aaf8ef1f1e7d5755f776fc28cdeb832d58a Mon Sep 17 00:00:00 2001 From: bitliu Date: Mon, 16 Jan 2023 10:27:59 +0800 Subject: [PATCH] fix: reuse gc name in GatewayClassObservedGenerationBump conformance test Signed-off-by: bitliu --- test/conformance/conformance_test.go | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/test/conformance/conformance_test.go b/test/conformance/conformance_test.go index f08cff7975b2..7c78bdd10bc1 100644 --- a/test/conformance/conformance_test.go +++ b/test/conformance/conformance_test.go @@ -54,11 +54,12 @@ func TestGatewayAPIConformance(t *testing.T) { CleanupBaseResources: *flags.CleanupBaseResources, ValidUniqueListenerPorts: validUniqueListenerPorts, SupportedFeatures: map[suite.SupportedFeature]bool{ - suite.SupportHTTPRouteQueryParamMatching: true, - suite.SupportReferenceGrant: true, - suite.SupportHTTPResponseHeaderModification: true, - suite.SupportHTTPRouteMethodMatching: true, - suite.SupportRouteDestinationPortMatching: true, + suite.SupportHTTPRouteQueryParamMatching: true, + suite.SupportReferenceGrant: true, + suite.SupportHTTPResponseHeaderModification: true, + suite.SupportHTTPRouteMethodMatching: true, + suite.SupportRouteDestinationPortMatching: true, + suite.SupportGatewayClassObservedGenerationBump: true, }, }) cSuite.Setup(t) @@ -84,6 +85,7 @@ func TestGatewayAPIConformance(t *testing.T) { tests.GatewaySecretInvalidReferenceGrant, tests.GatewayInvalidTLSConfiguration, tests.GatewayInvalidRouteKind, + tests.GatewayClassObservedGenerationBump, tests.HTTPRouteReferenceGrant, tests.HTTPRoutePartiallyInvalidViaInvalidReferenceGrant, tests.HTTPRouteInvalidParentRefNotMatchingListenerPort,