We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de37a21 commit 3e86d0dCopy full SHA for 3e86d0d
test/e2e/ctx/provisioner_kind.go
@@ -8,7 +8,6 @@ import (
8
"encoding/csv"
9
"flag"
10
"fmt"
11
- "io/ioutil"
12
"os"
13
"os/exec"
14
"path/filepath"
@@ -69,7 +68,7 @@ func (kl kindLogAdapter) V(log.Level) log.InfoLogger {
69
68
}
70
71
func Provision(ctx *TestContext) (func(), error) {
72
- dir, err := ioutil.TempDir("", "kind.")
+ dir, err := os.TempDir("", "kind.")
73
if err != nil {
74
return nil, fmt.Errorf("failed to create temporary directory: %s", err.Error())
75
0 commit comments