mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
use the timescale factor for flow control tests on CIs
This commit is contained in:
parent
843a0786fc
commit
b7b50572eb
3 changed files with 19 additions and 7 deletions
|
@ -184,7 +184,7 @@ var _ = Describe("Stream Flow controller", func() {
|
|||
It("tells the connection flow controller when the window was autotuned", func() {
|
||||
oldOffset := controller.bytesRead
|
||||
controller.contributesToConnection = true
|
||||
setRtt(200 * time.Millisecond)
|
||||
setRtt(scaleDuration(20 * time.Millisecond))
|
||||
controller.epochStartOffset = oldOffset
|
||||
controller.epochStartTime = time.Now().Add(-time.Millisecond)
|
||||
controller.AddBytesRead(55)
|
||||
|
@ -197,7 +197,7 @@ var _ = Describe("Stream Flow controller", func() {
|
|||
It("doesn't tell the connection flow controller if it doesn't contribute", func() {
|
||||
oldOffset := controller.bytesRead
|
||||
controller.contributesToConnection = false
|
||||
setRtt(200 * time.Millisecond)
|
||||
setRtt(scaleDuration(20 * time.Millisecond))
|
||||
controller.epochStartOffset = oldOffset
|
||||
controller.epochStartTime = time.Now().Add(-time.Millisecond)
|
||||
controller.AddBytesRead(55)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue