Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
philoserf committed Aug 19, 2024
1 parent da29e25 commit 0641822
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dice/dice_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ func TestD(t *testing.T) {
{"D100 is between 1 and 100", 100, 1},
}
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
t.Parallel()

for range [1000]int{} {
got := dice.D(test.upper)
if !(got <= test.upper) || !(got >= test.lower) {
Expand Down
2 changes: 1 addition & 1 deletion dice/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/philoserf/go/dice

go 1.21
go 1.23.0

0 comments on commit 0641822

Please sign in to comment.