Merge commit '5ac0710' into v3-porting

This commit is contained in:
2022-11-07 08:29:29 -05:00
16 changed files with 385 additions and 88 deletions

View File

@@ -2622,19 +2622,6 @@ func TestSetupInitializesOnlyNilWriters(t *testing.T) {
}
}
type stringGeneric struct {
value string
}
func (s *stringGeneric) Set(value string) error {
s.value = value
return nil
}
func (s *stringGeneric) String() string {
return s.value
}
func TestFlagAction(t *testing.T) {
stringFlag := &StringFlag{
Name: "f_string",