From a934c42aa11553e44371f6fde17f0ccb1d49937c Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Sat, 15 Nov 2025 20:36:14 -0800 Subject: [PATCH] temp fix before removing --- rand/rand_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rand/rand_test.go b/rand/rand_test.go index 4b616ad..e44f386 100644 --- a/rand/rand_test.go +++ b/rand/rand_test.go @@ -27,7 +27,7 @@ func TestCryptoUint64(t *testing.T) { func TestIntn(t *testing.T) { expected := []int{3081, 4887, 4847, 1059, 3081} mrand.Seed(1) - for i := 0; i < 5; i++ { + for i := range 5 { n := Intn2(1000, 5000) if n != expected[i] {