mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
fix seed generation in frame sorter tests
This commit is contained in:
parent
f54953fb1d
commit
004d372ed6
1 changed files with 4 additions and 4 deletions
|
@ -1401,15 +1401,15 @@ var _ = Describe("frame sorter", func() {
|
|||
}
|
||||
|
||||
Context(fmt.Sprintf("using %s frames", name), func() {
|
||||
seed := time.Now().UnixNano()
|
||||
fmt.Fprintf(GinkgoWriter, "Seed: %d\n", seed)
|
||||
rand.Seed(seed)
|
||||
|
||||
var data []byte
|
||||
var dataLen protocol.ByteCount
|
||||
var callbacks []callbackTracker
|
||||
|
||||
BeforeEach(func() {
|
||||
seed := time.Now().UnixNano()
|
||||
fmt.Fprintf(GinkgoWriter, "Seed: %d\n", seed)
|
||||
rand.Seed(seed)
|
||||
|
||||
callbacks = nil
|
||||
dataLen = 25
|
||||
if longFrames {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue