Apply go fix -rangeint ./...

This commit is contained in:
Michael Eischer
2026-07-22 22:26:19 +02:00
parent fb36a7f59b
commit 2c169edad4
56 changed files with 91 additions and 91 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ func TestCounter(t *testing.T) {
done := make(chan struct{})
go func() {
defer close(done)
for i := 0; i < N; i++ {
for range N {
time.Sleep(time.Millisecond)
c.Add(1)
}