mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
update Go to 1.16, drop support for 1.14
This commit is contained in:
parent
dd9f8e4a2b
commit
62a906de3c
19 changed files with 43 additions and 726 deletions
|
@ -1,6 +1,7 @@
|
|||
package quic
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"io"
|
||||
"os"
|
||||
"strconv"
|
||||
|
@ -94,3 +95,13 @@ var _ = Describe("Stream", func() {
|
|||
})
|
||||
})
|
||||
})
|
||||
|
||||
var _ = Describe("Deadline Error", func() {
|
||||
It("is a net.Error that wraps os.ErrDeadlineError", func() {
|
||||
err := deadlineError{}
|
||||
Expect(err.Temporary()).To(BeTrue())
|
||||
Expect(err.Timeout()).To(BeTrue())
|
||||
Expect(errors.Is(err, os.ErrDeadlineExceeded)).To(BeTrue())
|
||||
Expect(errors.Unwrap(err)).To(Equal(os.ErrDeadlineExceeded))
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue