io/ioutil package has been deprecated in Go 1.16 that replaces io/ioutil functions

Signed-off-by: Zou Nengren <zouyee1989@gmail.com>
This commit is contained in:
zounengren
2021-10-13 09:10:47 +08:00
parent 0855725370
commit 1f1cad3912
4 changed files with 5 additions and 9 deletions

View File

@@ -21,7 +21,6 @@ package integration
import (
"context"
"io/ioutil"
"net"
"os"
"path/filepath"
@@ -147,7 +146,7 @@ func testFailFastWhenConnectShim(abstract bool, dialFn dialFunc) func(*testing.T
}
func newTestListener(t testing.TB, abstract bool) (string, net.Listener, func()) {
tmpDir, err := ioutil.TempDir("", "shim-ut-XX")
tmpDir, err := os.MkdirTemp("", "shim-ut-XX")
if err != nil {
t.Fatalf("failed to create tmp directory: %v", err)
}