From 37a8b69ffe5fd9dfdf3caeda729775f1e00a2679 Mon Sep 17 00:00:00 2001 From: Dan Funk Date: Tue, 24 Mar 2020 14:40:24 -0400 Subject: [PATCH] Cleaning up a failing test, not sure why this isn't failing locally? --- tests/test_workflow_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_workflow_processor.py b/tests/test_workflow_processor.py index 02aa0300..96ab7dd3 100644 --- a/tests/test_workflow_processor.py +++ b/tests/test_workflow_processor.py @@ -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")