Merge pull request #91975 from wking/to-success-typo

test/e2e/framework/pods: Fix "to success" -> "to succeed"
This commit is contained in:
Kubernetes Prow Robot
2020-06-14 02:07:55 -07:00
committed by GitHub

View File

@@ -209,7 +209,7 @@ func (c *PodClient) WaitForSuccess(name string, timeout time.Duration) {
return false, nil return false, nil
} }
}, },
)).To(gomega.Succeed(), "wait for pod %q to success", name) )).To(gomega.Succeed(), "wait for pod %q to succeed", name)
} }
// WaitForFinish waits for pod to finish running, regardless of success or failure. // WaitForFinish waits for pod to finish running, regardless of success or failure.