diff --git a/pkg/l4/l4controller_test.go b/pkg/l4/l4controller_test.go index d263829ebe..d68f580ac0 100644 --- a/pkg/l4/l4controller_test.go +++ b/pkg/l4/l4controller_test.go @@ -166,7 +166,7 @@ func TestProcessCreateOrUpdate(t *testing.T) { t.Errorf("Failed to sync updated service %s, err %v", newSvc.Name, err) } // TODO remove this once https://github.com/kubernetes/client-go/issues/607 has been fixed. - validatePatchRequest(l4c.client, resetLBStatus, t) + //validatePatchRequest(l4c.client, resetLBStatus, t) // List the service and ensure that it contains the finalizer as well as Status field. newSvc, err = l4c.client.CoreV1().Services(newSvc.Namespace).Get(context2.TODO(), newSvc.Name, v1.GetOptions{}) if err != nil { @@ -202,7 +202,7 @@ func TestProcessDeletion(t *testing.T) { t.Errorf("Failed to sync updated service %s, err %v", newSvc.Name, err) } // TODO remove this once https://github.com/kubernetes/client-go/issues/607 has been fixed. - validatePatchRequest(l4c.client, resetLBStatus, t) + //validatePatchRequest(l4c.client, resetLBStatus, t) // List the service and ensure that it contains the finalizer as well as Status field. newSvc, err = l4c.client.CoreV1().Services(newSvc.Namespace).Get(context2.TODO(), newSvc.Name, v1.GetOptions{}) if err != nil {