rename packetHandlerMap.Close() to Destroy()

This commit is contained in:
Marten Seemann 2020-01-22 17:59:22 +07:00
parent 62d3a4166a
commit db396d8a78
6 changed files with 24 additions and 23 deletions

View file

@ -62,7 +62,7 @@ var _ = Describe("Packet Handler Map", func() {
}
handler.server = nil
handler.mutex.Unlock()
handler.Close()
handler.Destroy()
Eventually(handler.listening).Should(BeClosed())
})