@@ -74,29 +74,29 @@ const (
74
74
75
75
// StandardCoreFeatures are the features that are required to be conformant with
76
76
// the Core API features that are part of the Standard release channel.
77
- var StandardCoreFeatures = sets.Set [ SupportedFeature ]{
78
- SupportReferenceGrant : {} ,
79
- }
77
+ var StandardCoreFeatures = sets .New (
78
+ SupportReferenceGrant ,
79
+ )
80
80
81
81
// AllFeatures contains all the supported features and can be used to run all
82
82
// conformance tests with `all-features` flag.
83
83
//
84
84
// Note that the AllFeatures must in sync with defined features when the
85
85
// feature constants change.
86
- var AllFeatures = sets.Set [ SupportedFeature ]{
87
- SupportReferenceGrant : {} ,
88
- SupportTLSRoute : {} ,
89
- SupportHTTPRouteQueryParamMatching : {} ,
90
- SupportHTTPRouteMethodMatching : {} ,
91
- SupportHTTPResponseHeaderModification : {} ,
92
- SupportRouteDestinationPortMatching : {} ,
93
- SupportGatewayClassObservedGenerationBump : {} ,
94
- SupportHTTPRoutePortRedirect : {} ,
95
- SupportHTTPRouteSchemeRedirect : {} ,
96
- SupportHTTPRoutePathRedirect : {} ,
97
- SupportHTTPRouteHostRewrite : {} ,
98
- SupportHTTPRoutePathRewrite : {} ,
99
- }
86
+ var AllFeatures = sets .New (
87
+ SupportReferenceGrant ,
88
+ SupportTLSRoute ,
89
+ SupportHTTPRouteQueryParamMatching ,
90
+ SupportHTTPRouteMethodMatching ,
91
+ SupportHTTPResponseHeaderModification ,
92
+ SupportRouteDestinationPortMatching ,
93
+ SupportGatewayClassObservedGenerationBump ,
94
+ SupportHTTPRoutePortRedirect ,
95
+ SupportHTTPRouteSchemeRedirect ,
96
+ SupportHTTPRoutePathRedirect ,
97
+ SupportHTTPRouteHostRewrite ,
98
+ SupportHTTPRoutePathRewrite ,
99
+ )
100
100
101
101
// ConformanceTestSuite defines the test suite used to run Gateway API
102
102
// conformance tests.
0 commit comments