aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/runtest/run_test.go
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-09-10 12:34:20 +0200
committerTaras Madan <tarasmadan@google.com>2024-09-10 14:05:26 +0000
commit8c8b47c0c8cd80d1ff64780b9893d068439ead14 (patch)
tree440a17d052b790f801e0d1063f1763fcc465127d /pkg/runtest/run_test.go
parentc97c816133b42257d0bcf1ee4bd178bb2a7a2b9e (diff)
all: follow new linter recommendations
Diffstat (limited to 'pkg/runtest/run_test.go')
-rw-r--r--pkg/runtest/run_test.go2
1 files changed, 1 insertions, 1 deletions
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,