update Go to 1.16, drop support for 1.14

This commit is contained in:
Marten Seemann 2021-02-17 12:08:48 +08:00
parent dd9f8e4a2b
commit 62a906de3c
19 changed files with 43 additions and 726 deletions

View file

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