From d6ec9649fcabdf4f8bc40ec750c7338749b73014 Mon Sep 17 00:00:00 2001 From: Seebs Date: Mon, 30 Jan 2023 12:58:10 -0600 Subject: [PATCH] mark test helper as helper If this fails, it'd be nice to know which invocation of it failed. --- executor_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/executor_test.go b/executor_test.go index 1b3b5db7d..ac9427c89 100644 --- a/executor_test.go +++ b/executor_test.go @@ -7421,6 +7421,7 @@ func backupTest(t *testing.T, c *test.Cluster, index string) { } func chkSumCluster(t *testing.T, c *test.Cluster) string { + t.Helper() buf := &bytes.Buffer{} chkSumLog := logger.NewStandardLogger(buf) chkSum := ctl.NewChkSumCommand(chkSumLog)