From 6f3bb94eae46a2a81011105648c056ffa471e659 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Tue, 10 May 2016 13:51:54 -0400 Subject: [PATCH] Correct assertion text --- help_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help_test.go b/help_test.go index 6ed525b..a664865 100644 --- a/help_test.go +++ b/help_test.go @@ -235,7 +235,7 @@ func TestShowSubcommandHelp_CommandAliases(t *testing.T) { app.Run([]string{"foo", "help"}) if !strings.Contains(output.String(), "frobbly, fr, frob, bork") { - t.Errorf("expected output to include command name; got: %q", output.String()) + t.Errorf("expected output to include all command aliases; got: %q", output.String()) } }