Skip to content

Commit 6df9790

Browse files
committed
e2e: remove unused method in e2e/framework/log
1 parent 2fbe432 commit 6df9790

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

test/e2e/framework/log/logger.go

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,3 @@ func FailfWithOffset(offset int, format string, args ...interface{}) {
5252
log("FAIL", msg)
5353
ginkgowrapper.Fail(nowStamp()+": "+msg, 1+offset)
5454
}
55-
56-
// Fail is a replacement for ginkgo.Fail which logs the problem as it occurs
57-
// and then calls ginkgowrapper.Fail.
58-
func Fail(msg string, callerSkip ...int) {
59-
skip := 1
60-
if len(callerSkip) > 0 {
61-
skip += callerSkip[0]
62-
}
63-
log("FAIL", msg)
64-
ginkgowrapper.Fail(nowStamp()+": "+msg, skip)
65-
}

0 commit comments

Comments
 (0)