Skip to content

Commit

Permalink
Make tests os independent
Browse files Browse the repository at this point in the history
  • Loading branch information
lawrencewoodman committed Jun 26, 2016
1 parent 44209f7 commit b32d022
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions roveralls_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ func TestSubMain(t *testing.T) {
},
wantExitCode: 0,
wantFiles: []string{
"fixtures/good/good.go",
"fixtures/good2/good2.go",
filepath.Join("fixtures", "good", "good.go"),
filepath.Join("fixtures", "good2", "good2.go"),
},
},
{dir: "fixtures",
Expand All @@ -40,9 +40,9 @@ func TestSubMain(t *testing.T) {
},
wantExitCode: 0,
wantFiles: []string{
"fixtures/good/good.go",
"fixtures/good2/good2.go",
"fixtures/short/short.go",
filepath.Join("fixtures", "good", "good.go"),
filepath.Join("fixtures", "good2", "good2.go"),
filepath.Join("fixtures", "short", "short.go"),
},
},
}
Expand Down

0 comments on commit b32d022

Please sign in to comment.