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:
Marten Seemann 2018-03-16 13:26:10 +01:00
parent 0e86ee87f3
commit a8c71f5d69

View file

@ -357,7 +357,6 @@ var _ = Describe("Server", func() {
testErr := errors.New("connection error")
conn.readErr = testErr
go serv.serve()
Eventually(func() Session { return serv.sessions[connID] }).Should(BeNil())
Eventually(func() bool { return session.(*mockSession).closed }).Should(BeTrue())
Expect(serv.Close()).To(Succeed())
})