From 8c8b47c0c8cd80d1ff64780b9893d068439ead14 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Tue, 10 Sep 2024 12:34:20 +0200 Subject: all: follow new linter recommendations --- pkg/runtest/run_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/runtest') diff --git a/pkg/runtest/run_test.go b/pkg/runtest/run_test.go index 80f7308db..219e84046 100644 --- a/pkg/runtest/run_test.go +++ b/pkg/runtest/run_test.go @@ -79,7 +79,7 @@ func test(t *testing.T, sysTarget *targets.Target) { EnabledCalls: enabledCalls, LogFunc: func(text string) { t.Helper() - t.Logf(text) + t.Log(text) }, Retries: 7, // empirical number that seem to reduce flakes to zero Verbose: true, -- cgit mrf-deployment