This commit is contained in:
Nuno Cruces
2025-01-24 10:46:05 +00:00
parent c0298ad274
commit 1d951ecd18
20 changed files with 45 additions and 50 deletions

View File

@@ -372,7 +372,7 @@ func testParallel(t testing.TB, name string, n int) {
var group errgroup.Group
group.SetLimit(6)
for i := 0; i < n; i++ {
for i := range n {
if i&7 != 7 {
group.Go(reader)
} else {