fix: remove deprecated io/ioutils package

ioutils.ReadAll is deprecated since Go 1.16. This commit replaces it with
io.ReadAll. See https://pkg.go.dev/io/ioutil\#ReadAll for reference

Issue #2119
This commit is contained in:
pedromotita 2024-03-08 11:11:46 -03:00
parent 4fb0a66a34
commit 2485f00b27

View file

@ -18,7 +18,7 @@ import (
"bytes" "bytes"
"context" "context"
"fmt" "fmt"
"io/ioutil" "io"
"os" "os"
"reflect" "reflect"
"strings" "strings"
@ -2092,12 +2092,12 @@ func TestCommandPrintRedirection(t *testing.T) {
t.Error(err) t.Error(err)
} }
gotErrBytes, err := ioutil.ReadAll(errBuff) gotErrBytes, err := io.ReadAll(errBuff)
if err != nil { if err != nil {
t.Error(err) t.Error(err)
} }
gotOutBytes, err := ioutil.ReadAll(outBuff) gotOutBytes, err := io.ReadAll(outBuff)
if err != nil { if err != nil {
t.Error(err) t.Error(err)
} }