Merge pull request #1416 from lucas-clemente/reduce-drop-rate

reduce the drop rate in the self drop tests from 1/4 to 1/5
This commit is contained in:
Marten Seemann
2018-06-21 22:31:44 +07:00
committed by GitHub

View File

@@ -175,9 +175,9 @@ var _ = Describe("Handshake drop tests", func() {
app.run(version)
})
It(fmt.Sprintf("establishes a connection when 1/4 of the packets are lost in %s direction", d), func() {
It(fmt.Sprintf("establishes a connection when 1/5 of the packets are lost in %s direction", d), func() {
startListenerAndProxy(func(d quicproxy.Direction, p uint64) bool {
return d.Is(direction) && stochasticDropper(4)
return d.Is(direction) && stochasticDropper(5)
}, version)
app.run(version)
})