mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
remove unused function from streamsMap
This commit is contained in:
parent
c12508c3c9
commit
10f8156951
3 changed files with 13 additions and 41 deletions
|
@ -254,26 +254,6 @@ var _ = Describe("Streams Map", func() {
|
|||
})
|
||||
})
|
||||
|
||||
Context("number of streams", func() {
|
||||
It("returns 0 in the beginning", func() {
|
||||
Expect(m.NumberOfStreams()).To(Equal(0))
|
||||
})
|
||||
|
||||
It("increases the counter when a new stream is added", func() {
|
||||
err := m.putStream(&stream{streamID: 5})
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(m.NumberOfStreams()).To(Equal(1))
|
||||
})
|
||||
|
||||
It("decreases the counter when removing a stream", func() {
|
||||
err := m.putStream(&stream{streamID: 5})
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
err = m.RemoveStream(5)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(m.NumberOfStreams()).To(BeZero())
|
||||
})
|
||||
})
|
||||
|
||||
Context("Iterate", func() {
|
||||
// create 3 streams, ids 1 to 3
|
||||
BeforeEach(func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue