refactor(sdk): update for loop to range syntax
cognitive-glitch committed
Dec 9, 2025 at 12:55 UTC
f58b1e42dc098da0695fcf0d45cd02ea10bb63a4
1 file changed
+1
-1
sdk/sdk_e2e_test.go
+1
-1
@@ -277,7 +277,7 @@ func TestE2E_MultipleConnections(t *testing.T) {
277
numConnections := 5
278
log.Info().Int("count", numConnections).Msg("[TEST] Testing multiple concurrent connections")
279
280
- for i := 0; i < numConnections; i++ {
280
+ for i := range numConnections {
281
282
go func() {
283
log.Debug().Int("conn_num", i).Msg("[TEST] Starting connection")