Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
optclblast committed Jun 1, 2024
1 parent 8003224 commit 9c1ff13
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions internal/usecase/delta_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,11 @@ var letterRunes = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")

func RandStringRunes(n int) string {
b := make([]rune, n)

for i := range b {
b[i] = letterRunes[rand.Intn(len(letterRunes))]
}

return string(b)
}

Expand Down

0 comments on commit 9c1ff13

Please sign in to comment.