fix: missing intrange lint fix (#7333)

Missed in #7323

Signed-off-by: Ville Vesilehto <ville@vesilehto.fi>
This commit is contained in:
Ville Vesilehto 2025-05-29 04:41:27 +03:00 committed by GitHub
parent 60227bd8d2
commit 384fa3285e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
}