Fix Failf line offset reporting

This commit is contained in:
Zach Loafman 2015-02-12 10:35:12 -08:00
parent 9774e9bb7b
commit 62ff434825

View File

@ -45,7 +45,7 @@ func Logf(format string, a ...interface{}) {
}
func Failf(format string, a ...interface{}) {
Fail(fmt.Sprintf(format, a...))
Fail(fmt.Sprintf(format, a...), 1)
}
func waitForPodRunning(c *client.Client, id string, tryFor time.Duration) error {