Skip to content

Commit 6fd5cf4

Browse files
committed
formatting
1 parent 39bc227 commit 6fd5cf4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

tests/integration/functional/utils/test_run_utils.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ def execution_mode_pipeline(fail_step_2: bool = False) -> None:
9494
output_4 = step_4(output_1)
9595

9696
# These steps depend on the steps above
97-
output_5 = step_5(output_2)
98-
output_6 = step_6(output_3)
97+
output_5 = step_5(output_2)
98+
output_6 = step_6(output_3)
9999
output_7 = step_7(output_4)
100100

101101
# Final step
@@ -119,14 +119,14 @@ def test_build_dag_with_downstream_steps(clean_client):
119119

120120
# Expected DAG structure based on our pipeline
121121
expected_structure = {
122-
"step_1": {"step_2", "step_3", "step_4"},
123-
"step_2": {"step_5"},
124-
"step_3": {"step_6"},
125-
"step_4": {"step_7"},
126-
"step_5": {"step_8"},
127-
"step_6": {"step_8"},
128-
"step_7": {"step_8"},
129-
"step_8": set(),
122+
"step_1": {"step_2", "step_3", "step_4"},
123+
"step_2": {"step_5"},
124+
"step_3": {"step_6"},
125+
"step_4": {"step_7"},
126+
"step_5": {"step_8"},
127+
"step_6": {"step_8"},
128+
"step_7": {"step_8"},
129+
"step_8": set(),
130130
}
131131

132132
assert dag == expected_structure

0 commit comments

Comments
 (0)