diff --git a/spiffworkflow-backend/tests/spiffworkflow_backend/integration/test_process_api.py b/spiffworkflow-backend/tests/spiffworkflow_backend/integration/test_process_api.py index 0e59fdd8..5c0fc5b7 100644 --- a/spiffworkflow-backend/tests/spiffworkflow_backend/integration/test_process_api.py +++ b/spiffworkflow-backend/tests/spiffworkflow_backend/integration/test_process_api.py @@ -1623,6 +1623,10 @@ class TestProcessApi(BaseTest): assert process_instance.status == "terminated" assert ready_task.state == "CANCELLED" + # TODO: uncomment this once spiff is returning deleted tasks on cancel + # remaining_tasks = TaskModel.query.filter_by(process_instance_id=process_instance_id).all() + # assert len(remaining_tasks) == 3 + def test_process_instance_delete( self, app: Flask,