From 384fa3285ec98a68699eba008f559a8307d8e6f9 Mon Sep 17 00:00:00 2001 From: Ville Vesilehto Date: Thu, 29 May 2025 04:41:27 +0300 Subject: [PATCH] fix: missing intrange lint fix (#7333) Missed in #7323 Signed-off-by: Ville Vesilehto --- plugin/kubernetes/autopath_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/kubernetes/autopath_test.go b/plugin/kubernetes/autopath_test.go index ad4b01915..065e1a45c 100644 --- a/plugin/kubernetes/autopath_test.go +++ b/plugin/kubernetes/autopath_test.go @@ -70,7 +70,7 @@ func BenchmarkAutoPath(b *testing.B) { b.ReportAllocs() b.ResetTimer() - for i := 0; i < b.N; i++ { + for range b.N { result := k.AutoPath(state) _ = result }