mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
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:
parent
19190fdfd3
commit
7fde4641ac
@ -4,6 +4,7 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"regexp"
|
"regexp"
|
||||||
@ -57,7 +58,7 @@ func testRun(inputFile, reportFile string, config Config, t *testing.T) {
|
|||||||
}
|
}
|
||||||
defer input.Close()
|
defer input.Close()
|
||||||
|
|
||||||
wantReport, err := os.ReadFile(reportFile)
|
wantReport, err := ioutil.ReadFile(reportFile)
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
t.Skipf("Skipping test with missing report file: %s", reportFile)
|
t.Skipf("Skipping test with missing report file: %s", reportFile)
|
||||||
} else if err != nil {
|
} else if err != nil {
|
||||||
|
@ -2,6 +2,7 @@ package gotest
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
@ -15,7 +16,7 @@ var input = `some other output
|
|||||||
|
|
||||||
func TestJSONReaderReadAll(t *testing.T) {
|
func TestJSONReaderReadAll(t *testing.T) {
|
||||||
r := newJSONReader(strings.NewReader(input))
|
r := newJSONReader(strings.NewReader(input))
|
||||||
got, err := io.ReadAll(r)
|
got, err := ioutil.ReadAll(r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user