From 02875cef9010633b6689cfd1e2ceec9107b756b4 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sun, 4 Dec 2022 13:27:43 -0800 Subject: Stop using deprecated package io/ioutil Since Go 1.16 (which recently became the minimum supported Go version for this project), the package io/ioutil is deprecated in favor of equivalent functionality in the io and os packages. staticcheck warns about this. Address all the warnings by switching to the non-deprecated replacement functions. --- filesystem/path_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'filesystem/path_test.go') diff --git a/filesystem/path_test.go b/filesystem/path_test.go index 1c59dd5..d325054 100644 --- a/filesystem/path_test.go +++ b/filesystem/path_test.go @@ -20,7 +20,6 @@ package filesystem import ( "fmt" - "io/ioutil" "os" "testing" @@ -61,7 +60,7 @@ func TestHaveReadAccessTo(t *testing.T) { if util.IsUserRoot() { t.Skip("This test cannot be run as root") } - file, err := ioutil.TempFile("", "fscrypt_test") + file, err := os.CreateTemp("", "fscrypt_test") if err != nil { t.Fatal(err) } -- cgit v1.2.3