1
0
mirror of https://github.com/securego/gosec.git synced 2025-11-25 22:22:17 +02:00

Backport test case for 1.5

Go 1.5 does not have a rand.Read function so need to adjust test
definitions accordingly.
This commit is contained in:
Grant Murphy
2017-01-13 13:31:22 -08:00
parent f9868aa8c8
commit a7ec9ccc63
2 changed files with 8 additions and 6 deletions

View File

@@ -51,7 +51,7 @@ func TestRandBad(t *testing.T) {
import "math/rand"
func main() {
bad, _ := rand.Read(nil)
bad := rand.Int()
println(bad)
}`, analyzer)
@@ -77,7 +77,7 @@ func TestRandRenamed(t *testing.T) {
func main() {
good, _ := rand.Read(nil)
println(good)
i := mrand.Int()
i := mrand.Int31()
println(i)
}`, analyzer)