aboutsummaryrefslogtreecommitdiff
path: root/src/net/splice_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/splice_test.go')
-rw-r--r--src/net/splice_test.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/net/splice_test.go b/src/net/splice_test.go
index 0ba2f164c2..8a0cda6564 100644
--- a/src/net/splice_test.go
+++ b/src/net/splice_test.go
@@ -8,7 +8,6 @@ package net
import (
"io"
- "io/ioutil"
"log"
"os"
"os/exec"
@@ -202,7 +201,7 @@ func testSpliceIssue25985(t *testing.T, upNet, downNet string) {
}
defer fromProxy.Close()
- _, err = ioutil.ReadAll(fromProxy)
+ _, err = io.ReadAll(fromProxy)
if err != nil {
t.Fatal(err)
}