export the IdleTimeoutError and the HandshakeTimeoutError

This commit is contained in:
Marten Seemann 2021-04-26 19:13:32 +07:00
parent 90727cb41a
commit 34322f2214
2 changed files with 3 additions and 1 deletions

View file

@ -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())