mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
fix incorrect server test
When a Read from the connection fails, we need to close all sessions, but it's not necessary to remove them from the sessions map in the server.
This commit is contained in:
parent
0e86ee87f3
commit
a8c71f5d69
1 changed files with 0 additions and 1 deletions
|
@ -357,7 +357,6 @@ var _ = Describe("Server", func() {
|
||||||
testErr := errors.New("connection error")
|
testErr := errors.New("connection error")
|
||||||
conn.readErr = testErr
|
conn.readErr = testErr
|
||||||
go serv.serve()
|
go serv.serve()
|
||||||
Eventually(func() Session { return serv.sessions[connID] }).Should(BeNil())
|
|
||||||
Eventually(func() bool { return session.(*mockSession).closed }).Should(BeTrue())
|
Eventually(func() bool { return session.(*mockSession).closed }).Should(BeTrue())
|
||||||
Expect(serv.Close()).To(Succeed())
|
Expect(serv.Close()).To(Succeed())
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue