Fix a broken fmt.Errorf in the services e2e test.

This commit is contained in:
Alex Robinson 2015-04-16 17:24:59 +00:00
parent 6781441307
commit 663ca18e8d

View File

@ -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) {