diff --git a/cobra_test.go b/cobra_test.go index 4df32542..71243b51 100644 --- a/cobra_test.go +++ b/cobra_test.go @@ -483,7 +483,7 @@ func TestChildCommandFlags(t *testing.T) { t.Errorf("invalid input should generate error") } - if !strings.Contains(r.Output, "invalid argument \"10E\" for -i10E") { + if !strings.Contains(r.Output, "invalid argument \"10E\" for i10E") { t.Errorf("Wrong error message displayed, \n %s", r.Output) } } @@ -779,7 +779,7 @@ func TestFlagsBeforeCommand(t *testing.T) { // With parsing error properly reported x = fullSetupTest("-i10E echo") - if !strings.Contains(x.Output, "invalid argument \"10E\" for -i10E") { + if !strings.Contains(x.Output, "invalid argument \"10E\" for i10E") { t.Errorf("Wrong error message displayed, \n %s", x.Output) }