Add missing t.Helper() on RequireEventuallyf().

This gives us nicer test assertion failure messages.

Signed-off-by: Matt Moyer <moyerm@vmware.com>
This commit is contained in:
Matt Moyer
2021-07-09 12:08:44 -05:00
parent 71d4e05fb6
commit 428f389c7d
+1
View File
@@ -65,6 +65,7 @@ func RequireEventuallyf(
msg string,
args ...interface{},
) {
t.Helper()
RequireEventually(t, f, waitFor, tick, fmt.Sprintf(msg, args...))
}