summaryrefslogtreecommitdiffstats
path: root/client/go/cmd/clone_list_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/cmd/clone_list_test.go')
-rw-r--r--client/go/cmd/clone_list_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/go/cmd/clone_list_test.go b/client/go/cmd/clone_list_test.go
index 2ed2449af7d..737adeaac43 100644
--- a/client/go/cmd/clone_list_test.go
+++ b/client/go/cmd/clone_list_test.go
@@ -2,7 +2,7 @@
package cmd
import (
- "io/ioutil"
+ "os"
"path/filepath"
"testing"
@@ -59,7 +59,7 @@ func TestListSampleApps(t *testing.T) {
}
func readTestData(t *testing.T, name string) string {
- contents, err := ioutil.ReadFile(filepath.Join("testdata", name))
+ contents, err := os.ReadFile(filepath.Join("testdata", name))
if err != nil {
t.Fatal(err)
}