Skip to content

Commit

Permalink
Merge pull request #2535 from arkodg/rm-accepted
Browse files Browse the repository at this point in the history
Fix bugs in GatewayWithAttachedRoutes
  • Loading branch information
k8s-ci-robot authored Oct 27, 2023
2 parents 8cf18e3 + 51e35c3 commit 5fd8bec
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions conformance/tests/gateway-with-attached-routes.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,6 @@ var GatewayWithAttachedRoutes = suite.ConformanceTest{
Kind: v1.Kind("HTTPRoute"),
}},
Conditions: []metav1.Condition{
{
Type: string(v1.ListenerConditionAccepted),
Status: metav1.ConditionTrue,
Reason: "", // any reason
},
{
Type: string(v1.ListenerConditionProgrammed),
Status: metav1.ConditionFalse,
Expand All @@ -125,7 +120,7 @@ var GatewayWithAttachedRoutes = suite.ConformanceTest{
hrouteNN := types.NamespacedName{Name: "http-route-4", Namespace: "gateway-conformance-infra"}
notAccepted := metav1.Condition{
Type: string(v1.RouteConditionAccepted),
Status: metav1.ConditionTrue,
Status: metav1.ConditionFalse,
Reason: "", // any reason
}
unresolved := metav1.Condition{
Expand Down

0 comments on commit 5fd8bec

Please sign in to comment.