mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-23 15:37:01 +00:00
Replace uses of ioutil
ioutil package was deprecated in Go 1.16, replace all uses with their respective replacements. This patch was generated with a combination of `gofmt -r`, `eg`, and manually (for `ioutil.ReadDir`).
This commit is contained in:
@@ -4,7 +4,6 @@ import (
|
||||
"bytes"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"strings"
|
||||
"testing"
|
||||
@@ -19,7 +18,7 @@ func testWriteFile(fname string, data []byte, perm os.FileMode, ops ...FileOp) e
|
||||
}
|
||||
|
||||
// Read and compare the contents.
|
||||
c, err := ioutil.ReadFile(fname)
|
||||
c, err := os.ReadFile(fname)
|
||||
if err != nil {
|
||||
return fmt.Errorf("error reading: %v", err)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user