@@ -24,7 +24,7 @@ var skippedTestsForSSL = []string{
2424 tests .HTTPRouteRedirectPortAndScheme .ShortName ,
2525}
2626
27- var skippedTestsForTraditionalRoutes [] string // TODO: HTTPRoute hostname intersection and listener hostname matching
27+ // TODO: HTTPRoute hostname intersection and listener hostname matching
2828
2929var gatewaySupportedFeatures = []features.FeatureName {
3030 features .SupportGateway ,
@@ -44,7 +44,7 @@ func TestGatewayAPIConformance(t *testing.T) {
4444 opts .CleanupBaseResources = true
4545 opts .GatewayClassName = gatewayClassName
4646 opts .SupportedFeatures = sets .New (gatewaySupportedFeatures ... )
47- opts .SkipTests = append ( skippedTestsForSSL , skippedTestsForTraditionalRoutes ... )
47+ opts .SkipTests = skippedTestsForSSL
4848 opts .Implementation = conformancev1.Implementation {
4949 Organization : "APISIX" ,
5050 Project : "apisix-ingress-controller" ,
@@ -73,6 +73,6 @@ func TestGatewayAPIConformance(t *testing.T) {
7373 if err != nil {
7474 t .Fatalf ("failed to marshal the gateway conformance test report: %v" , err )
7575 }
76- // Save report in root of the repository, file name is in .gitignore.
76+ // Save report in the root of the repository, file name is in .gitignore.
7777 require .NoError (t , os .WriteFile ("../../" + reportFileName , rawReport , 0o600 ))
7878}
0 commit comments