Skip to content

Commit 739dc39

Browse files
committed
chore: Correct "ouput" typo
1 parent fd3e744 commit 739dc39

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

examples/example_standard_elements.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
handler: lsst.cmservice.handlers.element_handler.ElementHandler
5454
collections:
5555
step_input: "{out}/{step}/input"
56-
step_output: "{out}/{step}_ouput"
56+
step_output: "{out}/{step}_output"
5757
step_public_output: "{out}/{step}"
5858
step_validation: "{out}/{step}/validate"
5959
scripts:

tests/fixtures/seeds/empty_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Campaign:
9292
handler: lsst.cmservice.handlers.element_handler.ElementHandler
9393
collections:
9494
step_input: "{out}/{step}/input"
95-
step_output: "{out}/{step}_ouput"
95+
step_output: "{out}/{step}_output"
9696
step_public_output: "{out}/{step}"
9797
step_validation: "{out}/{step}/validate"
9898
scripts:

tests/fixtures/seeds/example_hsc_micro.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
handler: lsst.cmservice.handlers.element_handler.ElementHandler
129129
collections:
130130
step_input: "{out}/{step}/input"
131-
step_output: "{out}/{step}_ouput"
131+
step_output: "{out}/{step}_output"
132132
step_public_output: "{out}/{step}"
133133
step_validation: "{out}/{step}/validate"
134134
scripts:

tests/web_app/test_step_details_page.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async def test_get_step_details_by_id(engine: AsyncEngine) -> None:
4444
"child_config": {},
4545
"collections": {
4646
"step_input": f"cm/hsc_rc2_micro/step1_{uuid_int}/input",
47-
"step_output": f"cm/hsc_rc2_micro/step1_{uuid_int}_ouput",
47+
"step_output": f"cm/hsc_rc2_micro/step1_{uuid_int}_output",
4848
"step_public_output": f"cm/hsc_rc2_micro/step1_{uuid_int}",
4949
"step_validation": f"cm/hsc_rc2_micro/step1_{uuid_int}/validate",
5050
},
@@ -134,7 +134,7 @@ def test_step_details_page() -> None:
134134
# check collections are correct
135135
expect(page.get_by_text("step_input: HSC/runs/RC2/w_2024_30/DM-45425c/step1/input")).not_to_be_empty()
136136
expect(
137-
page.get_by_text("step_output: HSC/runs/RC2/w_2024_30/DM-45425c/step1_ouput"),
137+
page.get_by_text("step_output: HSC/runs/RC2/w_2024_30/DM-45425c/step1_output"),
138138
).not_to_be_empty()
139139
expect(
140140
page.get_by_text("step_public_output: HSC/runs/RC2/w_2024_30/DM-45425c/step1"),

0 commit comments

Comments
 (0)