From 62ff43482504da7e8c6d03215cb57ed70d334888 Mon Sep 17 00:00:00 2001 From: Zach Loafman Date: Thu, 12 Feb 2015 10:35:12 -0800 Subject: [PATCH] Fix Failf line offset reporting --- 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 f447d4d0acb..abc93bfef24 100644 --- a/test/e2e/util.go +++ b/test/e2e/util.go @@ -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 {