From e48e65b06293cd934b9537caf4b416224343a8d2 Mon Sep 17 00:00:00 2001 From: Atsushi Watanabe Date: Sun, 5 Jul 2020 20:20:10 +0900 Subject: [PATCH] Reduce iteration in TestRandomGeneratorCollision It took too long when -race is specified. --- rand_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rand_test.go b/rand_test.go index 63d49f1..44c4bb3 100644 --- a/rand_test.go +++ b/rand_test.go @@ -69,7 +69,7 @@ func TestRandomGeneratorCollision(t *testing.T) { }, } - const N = 1000 + const N = 100 const iteration = 100 for name, testCase := range testCases {