Commit 051ff6aa authored by Justin Santa Barbara's avatar Justin Santa Barbara

e2e: fix format-string for error message

Argument was omitted
parent c8e5e894
...@@ -1735,7 +1735,7 @@ func (j *ServiceTestJig) waitForPodsCreated(namespace string, replicas int) ([]s ...@@ -1735,7 +1735,7 @@ func (j *ServiceTestJig) waitForPodsCreated(namespace string, replicas int) ([]s
func (j *ServiceTestJig) waitForPodsReady(namespace string, pods []string) error { func (j *ServiceTestJig) waitForPodsReady(namespace string, pods []string) error {
timeout := 2 * time.Minute timeout := 2 * time.Minute
if !checkPodsRunningReady(j.Client, namespace, pods, timeout) { if !checkPodsRunningReady(j.Client, namespace, pods, timeout) {
return fmt.Errorf("Timeout waiting for %d pods to be ready") return fmt.Errorf("Timeout waiting for %d pods to be ready", len(pods))
} }
return nil return nil
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment