Expand BooleanField's default_values for stepthrough test

This commit is contained in:
richard-dds
2018-08-14 21:22:10 -04:00
parent 90ada6992b
commit bcf74b09eb
3 changed files with 3 additions and 4 deletions

View File

@@ -21,8 +21,8 @@ class POCForm(ValidatedForm):
am_poc = BooleanField(
"I am the technical POC.",
validators=[Required()],
default=False
default=False,
false_values=(False, "false", "False", "no", "")
)
fname_poc = StringField("POC First Name", validators=[Required()])