Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
Signed-off-by: Karol Szwaj <karol.szwaj@gmail.com>
  • Loading branch information
cnvergence committed Aug 1, 2024
1 parent b2b1e4e commit 0e40fc3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/provider/kubernetes/controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,8 @@ func TestProcessGatewayClassParamsRef(t *testing.T) {
name: "valid envoyproxy reference",
gc: &gwapiv1.GatewayClass{
ObjectMeta: metav1.ObjectMeta{
Name: "test",
Name: "test",
Finalizers: []string{gatewayClassFinalizer},
},
Spec: gwapiv1.GatewayClassSpec{
ControllerName: gcCtrlName,
Expand All @@ -288,7 +289,7 @@ func TestProcessGatewayClassParamsRef(t *testing.T) {
ObjectMeta: metav1.ObjectMeta{
Namespace: config.DefaultNamespace,
Name: "test",
Finalizers: []string{gatewayClassFinalizer},
Finalizers: []string{envoyProxyFinalizer},
},
},
expected: true,
Expand Down

0 comments on commit 0e40fc3

Please sign in to comment.