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

Commit 07b4de8

Browse files
authored
Merge pull request #670 from gregory-m/compare-vendor-paths-order
Fixed order in test output
2 parents 6d355e0 + 0088f3d commit 07b4de8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/test/integration_testcase.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ func (tc *IntegrationTestCase) CompareVendorPaths(gotVendorPaths []string) {
161161
}
162162
for ind := range gotVendorPaths {
163163
if gotVendorPaths[ind] != wantVendorPaths[ind] {
164-
tc.t.Errorf("Mismatch in vendor paths created: want %s got %s", gotVendorPaths, wantVendorPaths)
164+
tc.t.Errorf("Mismatch in vendor paths created: want %s got %s", wantVendorPaths, gotVendorPaths)
165165
}
166166
}
167167
}

0 commit comments

Comments
 (0)