Skip to content

Commit

Permalink
Merge pull request kubernetes#5134 from jlowdermilk/e2e
Browse files Browse the repository at this point in the history
fix Errorf argument mismatch in test/e2e/util.go
  • Loading branch information
roberthbailey committed Mar 6, 2015
2 parents 244766a + f7a4919 commit 0d6b57c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 0d6b57c

Please sign in to comment.