remove non-functioning 0-RTT test with different conn ID lengths

This commit is contained in:
Marten Seemann 2021-03-09 17:27:10 +08:00
parent 5a3fd58186
commit 6440908f53

View file

@ -26,10 +26,6 @@ var _ = Describe("0-RTT", func() {
version := v
Context(fmt.Sprintf("with QUIC version %s", version), func() {
for _, cl := range []int{0, mrand.Intn(14) + 4} {
connIDLen := cl
Context(fmt.Sprintf("using %d-byte connection IDs", connIDLen), func() {
runCountingProxy := func(serverPort int) (*quicproxy.QuicProxy, *uint32) {
var num0RTTPackets uint32 // to be used as an atomic
proxy, err := quicproxy.NewQuicProxy("localhost:0", &quicproxy.Opts{
@ -404,6 +400,4 @@ var _ = Describe("0-RTT", func() {
})
})
}
})
}
})