From 663ca18e8dd0bb530bf405cfec48187a5c361658 Mon Sep 17 00:00:00 2001 From: Alex Robinson Date: Thu, 16 Apr 2015 17:24:59 +0000 Subject: [PATCH] Fix a broken fmt.Errorf in the services e2e test. --- test/e2e/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/service.go b/test/e2e/service.go index d1607d42fc..23d25ec0e7 100644 --- a/test/e2e/service.go +++ b/test/e2e/service.go @@ -409,7 +409,7 @@ func waitForPublicIPs(c *client.Client, serviceName, namespace string) (*api.Ser } Logf("Waiting for service %s in namespace %s to have a public IP (%v)", serviceName, namespace, time.Since(start)) } - return service, fmt.Errorf("service %s in namespace %s to have a public IP after %.2f seconds", nil, serviceName, namespace, podStartTimeout.Seconds()) + return service, fmt.Errorf("service %s in namespace %s doesn't have a public IP after %.2f seconds", serviceName, namespace, podStartTimeout.Seconds()) } func validateUniqueOrFail(s []string) {