Skip to content

Commit

Permalink
Fix worklfow typo here and there
Browse files Browse the repository at this point in the history
  • Loading branch information
abretaud committed Jul 10, 2024
1 parent 4b72c22 commit 4174104
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
used.
</div>
<div v-localize>
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.
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions test/unit/workflows/test_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"

Expand Down

0 comments on commit 4174104

Please sign in to comment.