summaryrefslogtreecommitdiffstats
path: root/models/asymkey/ssh_key_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/asymkey/ssh_key_test.go')
-rw-r--r--models/asymkey/ssh_key_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/models/asymkey/ssh_key_test.go b/models/asymkey/ssh_key_test.go
index 54d299056b..71c8860f1c 100644
--- a/models/asymkey/ssh_key_test.go
+++ b/models/asymkey/ssh_key_test.go
@@ -7,7 +7,7 @@ package asymkey
import (
"bytes"
- "io/ioutil"
+ "os"
"os/exec"
"path/filepath"
"strings"
@@ -325,7 +325,7 @@ func TestFromOpenSSH(t *testing.T) {
sigPath := dataPath + ".sig"
run(t, nil, "ssh-keygen", "-Y", "sign", "-n", "file", "-f", privPath, dataPath)
- sigBytes, err := ioutil.ReadFile(sigPath)
+ sigBytes, err := os.ReadFile(sigPath)
if err != nil {
t.Fatal(err)
}
@@ -467,7 +467,7 @@ func TestRoundTrip(t *testing.T) {
func write(t *testing.T, d []byte, fp ...string) string {
p := filepath.Join(fp...)
- if err := ioutil.WriteFile(p, d, 0o600); err != nil {
+ if err := os.WriteFile(p, d, 0o600); err != nil {
t.Fatal(err)
}
return p