mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
remove outdated test
This commit is contained in:
parent
804287bd5c
commit
eb9c23096d
1 changed files with 0 additions and 12 deletions
|
@ -537,18 +537,6 @@ var _ = Describe("Session", func() {
|
|||
Expect(conn.written).To(HaveLen(1))
|
||||
})
|
||||
|
||||
PIt("bundles two small frames of the same stream into one packet", func() {
|
||||
s, err := session.OpenStream(5)
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
go session.run()
|
||||
_, err = s.Write([]byte("foobar1"))
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
_, err = s.Write([]byte("foobar2"))
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
Eventually(func() [][]byte { return conn.written }).Should(HaveLen(1))
|
||||
Consistently(func() [][]byte { return conn.written }).Should(HaveLen(1))
|
||||
})
|
||||
|
||||
It("sends out two big frames in two packets", func() {
|
||||
s1, err := session.OpenStream(5)
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue