1
0

refactor: remove ioutil

This commit is contained in:
2024-02-20 12:38:36 +00:00
parent 48e5e8cd04
commit 820208d079
2 changed files with 3 additions and 4 deletions

3
cache/cache_test.go vendored
View File

@ -1,7 +1,6 @@
package cache
import (
"io/ioutil"
"os"
"path/filepath"
"testing"
@ -10,7 +9,7 @@ import (
)
func TestDownloadRootFS(t *testing.T) {
tmp, err := ioutil.TempDir("", "out-of-tree_")
tmp, err := os.MkdirTemp("", "out-of-tree_")
if err != nil {
return
}