mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
export the IdleTimeoutError and the HandshakeTimeoutError
This commit is contained in:
parent
90727cb41a
commit
34322f2214
2 changed files with 3 additions and 1 deletions
|
@ -54,7 +54,7 @@ func areHandshakesRunning() bool {
|
|||
|
||||
var _ = Describe("Timeout tests", func() {
|
||||
checkTimeoutError := func(err error) {
|
||||
ExpectWithOffset(1, err).To(HaveOccurred())
|
||||
ExpectWithOffset(1, err).To(MatchError(&quic.IdleTimeoutError{}))
|
||||
nerr, ok := err.(net.Error)
|
||||
ExpectWithOffset(1, ok).To(BeTrue())
|
||||
ExpectWithOffset(1, nerr.Timeout()).To(BeTrue())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue