1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

Fix arg order to asserts

This commit is contained in:
Cristian Betivu
2023-08-19 19:10:25 +03:00
parent ee308a4994
commit 03694f7502
3 changed files with 4 additions and 4 deletions

View File

@ -79,7 +79,7 @@ func TestGetPadWidths(t *testing.T) {
for _, test := range tests {
output := getPadWidths(test.input)
assert.EqualValues(t, output, test.expected)
assert.EqualValues(t, test.expected, output)
}
}
@ -217,6 +217,6 @@ func TestRenderDisplayStrings(t *testing.T) {
for _, test := range tests {
output := RenderDisplayStrings(test.input, test.columnAlignments)
assert.EqualValues(t, output, test.expected)
assert.EqualValues(t, test.expected, output)
}
}