Cleaning up a failing test, not sure why this isn't failing locally?

This commit is contained in:
Dan Funk 2020-03-24 14:40:24 -04:00
parent f4342fc785
commit 37a8b69ffe
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ class TestWorkflowProcessor(BaseTest):
self.assertEqual({"color": "blue"}, processor3.next_task().data)
processor3.complete_task(processor3.next_task())
self.assertEqual("New Step", processor3.next_task().task_spec.description)
self.assertEqual({"color": "blue"}, processor3.next_task().data)
self.assertEqual("blue", processor3.next_task().data["color"])
def test_get_latest_spec_version(self):
workflow_spec_model = self.load_test_spec("two_forms")