From f7a491958b0ca7f973a3867cf730e4d284dfb9e3 Mon Sep 17 00:00:00 2001 From: Jeff Lowdermilk Date: Fri, 6 Mar 2015 09:36:37 -0800 Subject: [PATCH] fix Errorf argument mismatch in test/e2e/util.go --- test/e2e/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/util.go b/test/e2e/util.go index 22f86cdd068..551d6ee8f4d 100644 --- a/test/e2e/util.go +++ b/test/e2e/util.go @@ -72,7 +72,7 @@ func waitForPodCondition(c *client.Client, ns, podName, desc string, condition p } Logf("Waiting for pod %s status to be %q (found %q) (%d secs)", podName, api.PodRunning, pod.Status.Phase, time.Since(start).Seconds()) } - return fmt.Errorf("gave up waiting for pod %s to be %s after %v", podName, podStartTimeout) + return fmt.Errorf("gave up waiting for pod %s to be %s after %v", podName, desc, podStartTimeout) } func waitForPodRunning(c *client.Client, podName string) error {