diff --git a/test/e2e/service.go b/test/e2e/service.go index 44695421055..7fefcda4758 100644 --- a/test/e2e/service.go +++ b/test/e2e/service.go @@ -1758,7 +1758,7 @@ func (j *ServiceTestJig) waitForPodsCreated(namespace string, replicas int) ([]s func (j *ServiceTestJig) waitForPodsReady(namespace string, pods []string) error { timeout := 2 * time.Minute 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 }