open implicitly opened streams in order

This commit is contained in:
Marten Seemann 2017-02-17 17:04:04 +07:00
parent 824f122a79
commit 777f5f1ded
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
2 changed files with 16 additions and 15 deletions

View file

@ -146,7 +146,7 @@ var _ = Describe("Streams Map", func() {
_, err := m.GetOrOpenStream(protocol.StreamID(i*2 + 1))
Expect(err).NotTo(HaveOccurred())
}
_, err := m.GetOrOpenStream(protocol.StreamID(2*maxNumStreams + 2))
_, err := m.GetOrOpenStream(protocol.StreamID(2*maxNumStreams + 3))
Expect(err).To(MatchError(qerr.TooManyOpenStreams))
})