Skip to content

Commit

Permalink
Merge pull request #371 from MrHohn/fix-changed-function-signature
Browse files Browse the repository at this point in the history
Fix WaitForGCLBDeletion() callers
  • Loading branch information
MrHohn authored Jun 27, 2018
2 parents 8d77274 + 9d57baa commit 3905799
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/e2e-test/cdn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func TestCDN(t *testing.T) {
t.Errorf("Delete(%q) = %v, want nil", ing.Name, err)
}
t.Logf("Waiting for GCLB resources to be deleted (%s/%s)", s.Namespace, ing.Name)
if err := e2e.WaitForGCLBDeletion(ctx, Framework.Cloud, gclb); err != nil {
if err := e2e.WaitForGCLBDeletion(ctx, Framework.Cloud, gclb, nil); err != nil {
t.Errorf("e2e.WaitForGCLBDeletion(...) = %v, want nil", err)
}
t.Logf("GCLB resources deleted (%s/%s)", s.Namespace, ing.Name)
Expand Down
2 changes: 1 addition & 1 deletion cmd/e2e-test/iap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func TestIAP(t *testing.T) {
t.Errorf("Delete(%q) = %v, want nil", ing.Name, err)
}
t.Logf("Waiting for GCLB resources to be deleted (%s/%s)", s.Namespace, ing.Name)
if err := e2e.WaitForGCLBDeletion(ctx, Framework.Cloud, gclb); err != nil {
if err := e2e.WaitForGCLBDeletion(ctx, Framework.Cloud, gclb, nil); err != nil {
t.Errorf("e2e.WaitForGCLBDeletion(...) = %v, want nil", err)
}
t.Logf("GCLB resources deleted (%s/%s)", s.Namespace, ing.Name)
Expand Down

0 comments on commit 3905799

Please sign in to comment.