Fix tests

This commit is contained in:
Naveen Gogineni
2022-10-11 16:28:12 -04:00
parent a9d6b0d821
commit 4a109bc0ce
4 changed files with 7 additions and 9 deletions

View File

@@ -1914,12 +1914,12 @@ func TestApp_Run_CommandHelpName(t *testing.T) {
output := buf.String()
expected := "command foo bar - does bar things"
expected := "command custom bar - does bar things"
if !strings.Contains(output, expected) {
t.Errorf("expected %q in output: %s", expected, output)
}
expected = "command foo bar [command options] [arguments...]"
expected = "command custom bar [command options] [arguments...]"
if !strings.Contains(output, expected) {
t.Errorf("expected %q in output: %s", expected, output)
}