Skip to content

Commit

Permalink
Fixed wrong order in test output
Browse files Browse the repository at this point in the history
CompareVendorPaths was output got instead want and vice versa
  • Loading branch information
gregory-m committed May 28, 2017
1 parent 452040d commit 0088f3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/test/integration_testcase.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ func (tc *IntegrationTestCase) CompareVendorPaths(gotVendorPaths []string) {
}
for ind := range gotVendorPaths {
if gotVendorPaths[ind] != wantVendorPaths[ind] {
tc.t.Errorf("Mismatch in vendor paths created: want %s got %s", gotVendorPaths, wantVendorPaths)
tc.t.Errorf("Mismatch in vendor paths created: want %s got %s", wantVendorPaths, gotVendorPaths)
}
}
}
Expand Down

0 comments on commit 0088f3d

Please sign in to comment.