Revert main_test

main
Naveen Gogineni 2 years ago
parent a9c758e55f
commit 67f293a1e5

@ -80,9 +80,8 @@ func genFlagType() *main.FlagType {
Type: "bool",
},
},
TypeName: "YeOldeBlerfFlag",
ValuePointer: true,
DestinationPointer: true,
TypeName: "YeOldeBlerfFlag",
ValuePointer: true,
},
}
}
@ -116,21 +115,6 @@ func TestFlagType_ValuePointer(t *testing.T) {
}
}
func TestFlagType_DestinationPointer(t *testing.T) {
ft := genFlagType()
if !ft.DestinationPointer() {
t.Errorf("expected DestinationPointer to be true")
return
}
ft.Config = nil
if ft.DestinationPointer() {
t.Errorf("expected DestinationPointer to be false")
}
}
func TestFlagType_GenerateFmtStringerInterface(t *testing.T) {
ft := genFlagType()

Loading…
Cancel
Save