We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7883f41 commit 4a9620bCopy full SHA for 4a9620b
internal/entity/coverage_test.go
@@ -63,9 +63,9 @@ func FuzzMergeAndCleanCoverage(f *testing.F) {
63
f.Add(uint64(42), uint64(233))
64
65
f.Fuzz(func(t *testing.T, seed1, seed2 uint64) {
66
- r := rand.New(rand.NewPCG(seed1, seed2)) //nolint:gosec need for repeatable fuzzing
+ r := rand.New(rand.NewPCG(seed1, seed2)) //nolint:gosec // need for repeatable fuzzing
67
68
- partCnt := rand.IntN(1024) + 2 //nolint:gosec need for repeatable fuzzing
+ partCnt := rand.IntN(1024) + 2 //nolint:gosec // need for repeatable fuzzing
69
70
coves := make([]entity.AddrCoverage, 0, partCnt)
71
0 commit comments