Skip to content

Commit

Permalink
Comment validatePatchRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
aledbf committed Apr 8, 2020
1 parent 27e8da3 commit 8e72ea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/l4/l4controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 8e72ea3

Please sign in to comment.