From 7fde4641acef5b92f397a8baf8309d1a45d608cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Fri, 1 Jul 2022 22:53:57 +0100 Subject: [PATCH] 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. --- internal/gojunitreport/go-junit-report_test.go | 3 ++- parser/gotest/json_test.go | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/internal/gojunitreport/go-junit-report_test.go b/internal/gojunitreport/go-junit-report_test.go index 97db517..a44d67f 100644 --- a/internal/gojunitreport/go-junit-report_test.go +++ b/internal/gojunitreport/go-junit-report_test.go @@ -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 { diff --git a/parser/gotest/json_test.go b/parser/gotest/json_test.go index abe1af8..85b4177 100644 --- a/parser/gotest/json_test.go +++ b/parser/gotest/json_test.go @@ -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) }