Skip to content

Commit

Permalink
Fix dual import
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoPolo committed May 16, 2022
1 parent e7a4079 commit 0a3b92d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions command/loadgen/pseudorand.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ package loadgen
import (
"io"
"math/rand"
mathrand "math/rand"
)

type pr struct {
rand.Source
}

func newPseudoRandReaderFrom(src mathrand.Source) io.Reader {
func newPseudoRandReaderFrom(src rand.Source) io.Reader {
return &pr{src}
}

Expand Down

0 comments on commit 0a3b92d

Please sign in to comment.