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

@ -5,7 +5,6 @@ import (
"context"
"fmt"
"io"
"io/ioutil"
mrand "math/rand"
"net"
"runtime/pprof"
@ -410,7 +409,7 @@ var _ = Describe("Timeout tests", func() {
if err != nil {
return err
}
data, err := ioutil.ReadAll(str)
data, err := io.ReadAll(str)
if err != nil {
return err
}