diff --git a/client/src/components/Workflow/Run/WorkflowTargetPreferredObjectStorePopover.vue b/client/src/components/Workflow/Run/WorkflowTargetPreferredObjectStorePopover.vue index ba9bccf13a36..b45d5eab24df 100644 --- a/client/src/components/Workflow/Run/WorkflowTargetPreferredObjectStorePopover.vue +++ b/client/src/components/Workflow/Run/WorkflowTargetPreferredObjectStorePopover.vue @@ -13,7 +13,7 @@ used.
- Change {{ preferredOrEmptyString }} storage location by clicking on the storage button in the worklfow + Change {{ preferredOrEmptyString }} storage location by clicking on the storage button in the workflow run header.
diff --git a/test/integration/objectstore/test_selection_with_user_preferred_object_store.py b/test/integration/objectstore/test_selection_with_user_preferred_object_store.py index 494bf093be72..5bf562bc8b5b 100644 --- a/test/integration/objectstore/test_selection_with_user_preferred_object_store.py +++ b/test/integration/objectstore/test_selection_with_user_preferred_object_store.py @@ -420,9 +420,9 @@ def _run_simple_nested_workflow_get_output_storage_info_dicts( def _run_nested_workflow_with_effective_output_get_output_storage_info_dicts( self, history_id: str, extra_invocation_kwds: Optional[Dict[str, Any]] = None, twice_nested=False ): - worklfow_data = WORKFLOW_NESTED_OUTPUT if not twice_nested else WORKFLOW_NESTED_TWICE_OUTPUT + workflow_data = WORKFLOW_NESTED_OUTPUT if not twice_nested else WORKFLOW_NESTED_TWICE_OUTPUT wf_run = self.workflow_populator.run_workflow( - worklfow_data, + workflow_data, test_data=TEST_NESTED_WORKFLOW_TEST_DATA, history_id=history_id, extra_invocation_kwds=extra_invocation_kwds, diff --git a/test/unit/workflows/test_modules.py b/test/unit/workflows/test_modules.py index 9e2bf5c4516e..6a1b5b653ce7 100644 --- a/test/unit/workflows/test_modules.py +++ b/test/unit/workflows/test_modules.py @@ -207,7 +207,7 @@ def test_tool_version_same(): - output_name: "out_file1" """ -COLLECTION_TYPE_WORKLFOW_YAML = """ +COLLECTION_TYPE_WORKFLOW_YAML = """ steps: - type: "data_collection_input" label: "input1" @@ -234,7 +234,7 @@ def test_subworkflow_new_inputs(): def test_subworkflow_new_inputs_collection_type(): - subworkflow_module = __new_subworkflow_module(COLLECTION_TYPE_WORKLFOW_YAML) + subworkflow_module = __new_subworkflow_module(COLLECTION_TYPE_WORKFLOW_YAML) inputs = subworkflow_module.get_data_inputs() assert inputs[0]["collection_type"] == "list:list"