Skip to content

Commit

Permalink
helper - used minUint to stop linter from complaining
Browse files Browse the repository at this point in the history
  • Loading branch information
brianvoe committed Feb 12, 2024
1 parent a4b6a8a commit 2194431
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helpers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ func TestRandUintRange(t *testing.T) {
tests := []testStruct{
{0, 0},
{100000, 100},
{0, maxUint},
{0 + 10000, maxUint - 10000},
{minUint, maxUint},
{minUint + 10000, maxUint - 10000},
}

// Add 10000 random values to the test set
Expand Down

0 comments on commit 2194431

Please sign in to comment.