Rename tests to testdata

This commit is contained in:
Joël Stemmer 2018-04-21 18:07:05 +01:00
parent f738270caf
commit 6a7ce5ecd4
41 changed files with 3 additions and 3 deletions

View File

@ -811,9 +811,9 @@ var testCases = []TestCase{
func TestParser(t *testing.T) {
for _, testCase := range testCases {
t.Logf("Running: %s", testCase.name)
t.Logf("Test %s", testCase.name)
file, err := os.Open("tests/" + testCase.name)
file, err := os.Open("testdata/" + testCase.name)
if err != nil {
t.Fatal(err)
}
@ -903,7 +903,7 @@ func testJUnitFormatter(t *testing.T, goVersion string) {
}
func loadTestReport(name, goVersion string) (string, error) {
contents, err := ioutil.ReadFile("tests/" + name)
contents, err := ioutil.ReadFile("testdata/" + name)
if err != nil {
return "", err
}