File tree 4 files changed +3
-14
lines changed
4 files changed +3
-14
lines changed Original file line number Diff line number Diff line change @@ -64,17 +64,7 @@ func TestConformance(t *testing.T) {
64
64
})
65
65
cSuite .Setup (t )
66
66
67
- // TODO(https://github.com/kubernetes-sigs/gateway-api/issues/1891) this will likely changed;
68
- // for now, we use this mechanism to split mesh and gateway types
69
- var toRun []suite.ConformanceTest
70
- if supportedFeatures .Has (suite .SupportGateway ) {
71
- toRun = append (toRun , tests .ConformanceTests ... )
72
- }
73
- if supportedFeatures .Has (suite .SupportMesh ) {
74
- toRun = append (toRun , tests .MeshConformanceTests ... )
75
- }
76
-
77
- cSuite .Run (t , toRun )
67
+ cSuite .Run (t , tests .ConformanceTests )
78
68
}
79
69
80
70
// parseSupportedFeatures parses flag arguments and converts the string to
Original file line number Diff line number Diff line change @@ -19,4 +19,3 @@ package tests
19
19
import "sigs.k8s.io/gateway-api/conformance/utils/suite"
20
20
21
21
var ConformanceTests []suite.ConformanceTest
22
- var MeshConformanceTests []suite.ConformanceTest
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import (
25
25
)
26
26
27
27
func init () {
28
- MeshConformanceTests = append (MeshConformanceTests , MeshBasic )
28
+ ConformanceTests = append (ConformanceTests , MeshBasic )
29
29
}
30
30
31
31
var MeshBasic = suite.ConformanceTest {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import (
25
25
)
26
26
27
27
func init () {
28
- MeshConformanceTests = append (MeshConformanceTests , MeshTrafficSplit )
28
+ ConformanceTests = append (ConformanceTests , MeshTrafficSplit )
29
29
}
30
30
31
31
var MeshTrafficSplit = suite.ConformanceTest {
You can’t perform that action at this time.
0 commit comments