Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Fixed order in test output #670

Merged
merged 1 commit into from
May 30, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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