From d0172e42a1a40a3f8605430ee18cd9fddf0fb130 Mon Sep 17 00:00:00 2001 From: Patricio Whittingslow Date: Tue, 28 Jul 2026 11:25:43 -0300 Subject: [PATCH] apply go fix --- x/rawsock/rawsock_linux_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/rawsock/rawsock_linux_test.go b/x/rawsock/rawsock_linux_test.go index 0bfc93f..fe56cb8 100644 --- a/x/rawsock/rawsock_linux_test.go +++ b/x/rawsock/rawsock_linux_test.go @@ -28,7 +28,7 @@ func TestAcceptConnDoesNotAllocate(t *testing.T) { c.Close() } }() - for i := 0; i < n; i++ { + for range n { c, err := net.Dial("tcp", addr) if err != nil { t.Fatal(err)