diff options
| author | Eric Biggers <ebiggers@google.com> | 2022-12-04 13:27:43 -0800 |
|---|---|---|
| committer | Eric Biggers <ebiggers3@gmail.com> | 2022-12-04 14:07:39 -0800 |
| commit | 02875cef9010633b6689cfd1e2ceec9107b756b4 (patch) | |
| tree | 9f310eac398e99dd12f42d94967b2e1bf1c7fe83 /actions/recovery_test.go | |
| parent | 5373b314473b08f13372ab55b551738307a85fbd (diff) | |
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.
Diffstat (limited to 'actions/recovery_test.go')
| -rw-r--r-- | actions/recovery_test.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/actions/recovery_test.go b/actions/recovery_test.go index 5abd0a9..35ade0e 100644 --- a/actions/recovery_test.go +++ b/actions/recovery_test.go @@ -19,7 +19,6 @@ package actions import ( - "io/ioutil" "os" "path/filepath" "strings" @@ -29,7 +28,7 @@ import ( ) func TestRecoveryPassphrase(t *testing.T) { - tempDir, err := ioutil.TempDir("", "fscrypt") + tempDir, err := os.MkdirTemp("", "fscrypt") if err != nil { t.Fatal(err) } @@ -71,7 +70,7 @@ func TestRecoveryPassphrase(t *testing.T) { recoveryFile); err != nil { t.Fatal(err) } - contentsBytes, err := ioutil.ReadFile(recoveryFile) + contentsBytes, err := os.ReadFile(recoveryFile) if err != nil { t.Fatal(err) } |