forked from mirror/cobra
Fix tests
This commit is contained in:
parent
3d89ed4908
commit
37a4355faa
|
@ -569,7 +569,7 @@ func TestChildCommandFlags(t *testing.T) {
|
||||||
if r.Error == nil {
|
if r.Error == nil {
|
||||||
t.Errorf("invalid input should generate error")
|
t.Errorf("invalid input should generate error")
|
||||||
}
|
}
|
||||||
if !strings.Contains(r.Error.Error(), "invalid argument \"10E\" for i10E") {
|
if !strings.Contains(r.Error.Error(), "invalid syntax") {
|
||||||
t.Errorf("Wrong error message displayed, \n %s", r.Error)
|
t.Errorf("Wrong error message displayed, \n %s", r.Error)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -987,7 +987,7 @@ func TestFlagsBeforeCommand(t *testing.T) {
|
||||||
|
|
||||||
// With parsing error properly reported
|
// With parsing error properly reported
|
||||||
x = fullSetupTest("-i10E echo")
|
x = fullSetupTest("-i10E echo")
|
||||||
if !strings.Contains(x.Error.Error(), "invalid argument \"10E\" for i10E") {
|
if !strings.Contains(x.Error.Error(), "invalid syntax") {
|
||||||
t.Errorf("Wrong error message displayed, \n %s", x.Error)
|
t.Errorf("Wrong error message displayed, \n %s", x.Error)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue