mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
stop using math/rand.Seed and Read in tests, bump go.mod version to 1.20 (#3936)
This commit is contained in:
parent
3d89e545d3
commit
0662afba63
16 changed files with 45 additions and 43 deletions
|
@ -8,6 +8,8 @@ import (
|
|||
"runtime"
|
||||
"time"
|
||||
|
||||
"golang.org/x/exp/rand"
|
||||
|
||||
"github.com/golang/mock/gomock"
|
||||
"github.com/quic-go/quic-go/internal/ackhandler"
|
||||
"github.com/quic-go/quic-go/internal/mocks"
|
||||
|
@ -1169,7 +1171,7 @@ var _ = Describe("Send Stream", func() {
|
|||
mockFC.EXPECT().AddBytesSent(gomock.Any()).AnyTimes()
|
||||
|
||||
data := make([]byte, dataLen)
|
||||
_, err := mrand.Read(data)
|
||||
_, err := rand.Read(data)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
done := make(chan struct{})
|
||||
go func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue