Skip to content

Commit 1319020

Browse files
fix: node state
1 parent 20f70f6 commit 1319020

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

services/director-v2/tests/integration/01/test_computation_api.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,9 @@ def _convert_to_pipeline_details(
432432
NodeID(workbench_node_uuids[dep_n])
433433
for dep_n in node_state["dependencies"]
434434
},
435-
currentStatus=node_state.get("currentStatus", RunningState.NOT_STARTED),
435+
current_status=node_state.get(
436+
"currentStatus", RunningState.NOT_STARTED
437+
),
436438
progress=node_state.get("progress"),
437439
)
438440
for node_index, node_state in expected_node_states.items()

0 commit comments

Comments
 (0)