mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +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
|
@ -3,9 +3,10 @@ package quic
|
|||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"math/rand"
|
||||
"time"
|
||||
|
||||
"golang.org/x/exp/rand"
|
||||
|
||||
"github.com/quic-go/quic-go/internal/protocol"
|
||||
"github.com/quic-go/quic-go/internal/wire"
|
||||
|
||||
|
@ -274,7 +275,7 @@ var _ = Describe("Streams Map (incoming)", func() {
|
|||
BeforeEach(func() { maxNumStreams = num })
|
||||
|
||||
It("opens and accepts streams", func() {
|
||||
rand.Seed(GinkgoRandomSeed())
|
||||
rand.Seed(uint64(GinkgoRandomSeed()))
|
||||
ids := make([]protocol.StreamNum, num)
|
||||
for i := 0; i < num; i++ {
|
||||
ids[i] = protocol.StreamNum(i + 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue