mirror of
https://github.com/spf13/cobra
synced 2024-11-04 12:57:14 +00:00
Fix failing tests due to pflag error message change
This commit is contained in:
parent
62abfcbd80
commit
c4247299ff
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue