Formatting

This commit is contained in:
Montana
2019-01-04 14:08:44 -05:00
parent c718e9a0d7
commit 1fcd27a4e0
3 changed files with 5 additions and 4 deletions

View File

@@ -3,7 +3,8 @@ from wtforms import Form
from atst.forms.task_order import AppInfoForm
def test_complexity():
form = AppInfoForm(formdata={"complexity":["other", "not_sure", "storage"]})
form = AppInfoForm(formdata={"complexity": ["other", "not_sure", "storage"]})
assert form.data["complexity"] == ["other", "not_sure", "storage"]