test/e2e/framework/pods: Fix "to success" -> "to succeed"

Typo is from 5eb41e9acb (Add container lifecycle hook test,
2016-09-23, #33389).
This commit is contained in:
W. Trevor King 2020-06-09 20:04:07 -07:00
parent d62762f090
commit d9cc269bb6

View File

@ -209,7 +209,7 @@ func (c *PodClient) WaitForSuccess(name string, timeout time.Duration) {
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.