From f72a14f608aea35cc5861524dcda71648c7f6adc Mon Sep 17 00:00:00 2001 From: Ahmed Awan Date: Mon, 17 Jun 2024 11:57:10 -0500 Subject: [PATCH] fix integration test for step parameter key changed from label to step id --- test/integration/test_workflow_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/test_workflow_tasks.py b/test/integration/test_workflow_tasks.py index c250b624439f..939e83b5b637 100644 --- a/test/integration/test_workflow_tasks.py +++ b/test/integration/test_workflow_tasks.py @@ -112,7 +112,7 @@ def _test_export_import_invocation_with_input_as_output(self, use_uris): out = output_values["wf_output_param"] assert out == "A text variable" inputs = invocation_details["input_step_parameters"] - assert "text_input" in inputs + assert list(inputs.values())[0]["label"] == "text_input" self._rerun_imported_workflow(summary, invocation_details)