From c3ba158355a1843daa05d0b11bcb441f42f0a38e Mon Sep 17 00:00:00 2001 From: bayashi <42190+bayashi@users.noreply.github.com> Date: Thu, 14 Dec 2023 14:17:38 +0000 Subject: [PATCH] remove unnecessary condition. Just forgot to remove --- trace/trace.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trace/trace.go b/trace/trace.go index a52aace..50a05b8 100644 --- a/trace/trace.go +++ b/trace/trace.go @@ -51,7 +51,7 @@ func Info() []string { lastCaller = fmt.Sprintf("%s:%d", file, line) if len(strings.Split(file, "/")) > 1 && // https://github.com/stretchr/testify/pull/402 - !skipMyself(file) && !strings.Contains(file, "/actually") { + !skipMyself(file) { callers = append(callers, lastCaller) }