Skip to content

Commit

Permalink
Update tests/gocase/util/random.go
Browse files Browse the repository at this point in the history
  • Loading branch information
git-hulk authored Sep 3, 2023
1 parent 0b21298 commit 9d420df
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/gocase/util/random.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ func RandStringWithSeed(min, max int, typ RandStringType, seed int64) string {

var sb strings.Builder
for ; length > 0; length-- {
// use global rand to avoid collision
s := fmt.Sprintf("%c", minVal+r.Intn(maxVal-minVal+1))
sb.WriteString(s)
}
Expand Down

0 comments on commit 9d420df

Please sign in to comment.