Use ioutil package for compatibility with Go 1.13

We specify 1.13 in go.mod, so we should make sure it can be built and
tested on that version. Let's keep using the ioutil package for now,
since it was only deprecated from 1.16.
This commit is contained in:
Joël Stemmer 2022-07-01 22:53:57 +01:00
parent 19190fdfd3
commit 7fde4641ac
2 changed files with 4 additions and 2 deletions

View File

@ -4,6 +4,7 @@ import (
"bytes"
"flag"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"regexp"
@ -57,7 +58,7 @@ func testRun(inputFile, reportFile string, config Config, t *testing.T) {
}
defer input.Close()
wantReport, err := os.ReadFile(reportFile)
wantReport, err := ioutil.ReadFile(reportFile)
if os.IsNotExist(err) {
t.Skipf("Skipping test with missing report file: %s", reportFile)
} else if err != nil {

View File

@ -2,6 +2,7 @@ package gotest
import (
"io"
"io/ioutil"
"strings"
"testing"
@ -15,7 +16,7 @@ var input = `some other output
func TestJSONReaderReadAll(t *testing.T) {
r := newJSONReader(strings.NewReader(input))
got, err := io.ReadAll(r)
got, err := ioutil.ReadAll(r)
if err != nil {
t.Fatal(err)
}