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

@ -38,7 +38,6 @@ func expectTooManyStreamsError(err error) {
ExpectWithOffset(1, err.Error()).To(Equal(errTooManyOpenStreams.Error()))
nerr, ok := err.(net.Error)
ExpectWithOffset(1, ok).To(BeTrue())
ExpectWithOffset(1, nerr.Temporary()).To(BeTrue())
ExpectWithOffset(1, nerr.Timeout()).To(BeFalse())
}