drop support for Go 1.15

This commit is contained in:
Marten Seemann 2021-08-05 10:28:43 +02:00
parent 761c0fabd6
commit 68e468a3bc
30 changed files with 93 additions and 209 deletions

View file

@ -3,7 +3,7 @@ package self_test
import (
"context"
"fmt"
"io/ioutil"
"io"
"net"
quic "github.com/lucas-clemente/quic-go"
@ -90,7 +90,7 @@ var _ = Describe("Key Update tests", func() {
Expect(err).ToNot(HaveOccurred())
str, err := sess.AcceptUniStream(context.Background())
Expect(err).ToNot(HaveOccurred())
data, err := ioutil.ReadAll(str)
data, err := io.ReadAll(str)
Expect(err).ToNot(HaveOccurred())
Expect(data).To(Equal(PRDataLong))
Expect(sess.CloseWithError(0, "")).To(Succeed())