stop using net.Error.Temporary in tests

This commit is contained in:
Marten Seemann 2022-04-02 20:23:00 +01:00
parent 0c6b3dfa93
commit 4f85f45f0a
5 changed files with 0 additions and 7 deletions

View file

@ -218,7 +218,6 @@ var _ = Describe("Receive Stream", func() {
Context("deadlines", func() {
It("the deadline error has the right net.Error properties", func() {
Expect(errDeadline.Temporary()).To(BeTrue())
Expect(errDeadline.Timeout()).To(BeTrue())
Expect(errDeadline).To(MatchError("deadline exceeded"))
})