simplify range traversal

This commit is contained in:
Vasyl Tretiakov 2025-10-25 13:07:56 +03:00
parent 6e5ced80bb
commit ef1b959538

View File

@ -3794,7 +3794,7 @@ func assertReceivedBitmaskSubgroup(t *testing.T, ctx context.Context, subs [][]*
var msg *struct{} = nil
go func() {
for i := 0; i < len(subs); i++ {
for range subs {
select {
case m := <-msgch:
msg = &m