Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "worklfow" typo here and there #18523

Merged
merged 1 commit into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading