Merge branch 'feature/delete-variable-script-584' of github.com:sartography/cr-connect-workflow into feature/delete-variable-script-584

This commit is contained in:
Dan 2022-02-21 14:30:41 -05:00
commit 9fc8158903
1 changed files with 3 additions and 2 deletions

View File

@ -10,9 +10,10 @@ class TestDeleteVariables(BaseTest):
workflow = self.create_workflow('delete_variables')
workflow_api = self.get_workflow_api(workflow)
task = workflow_api.next_task
for item in ('a', 'b', 'c', 'd', 'e'):
items = ('a', 'b', 'c', 'd', 'e')
for item in items:
self.assertIn(item, task.data)
workflow_api = self.complete_form(workflow, task, {})
task = workflow_api.next_task
for item in ('a', 'b', 'c', 'd', 'e'):
for item in items:
self.assertNotIn(item, task.data)