@@ -416,12 +416,12 @@ async def test_run_partial_computation(
416416
417417 def _convert_to_pipeline_details (
418418 project : ProjectAtDB ,
419- exp_pipeline_adj_list : dict [int , list [int ]],
420- exp_node_states : dict [int , dict [str , Any ]],
419+ expected_pipeline_adj_list : dict [int , list [int ]],
420+ expected_node_states : dict [int , dict [str , Any ]],
421421 ) -> PipelineDetails :
422422 workbench_node_uuids = list (project .workbench .keys ())
423423 converted_adj_list : dict [NodeID , list [NodeID ]] = {}
424- for node_key , next_nodes in exp_pipeline_adj_list .items ():
424+ for node_key , next_nodes in expected_pipeline_adj_list .items ():
425425 converted_adj_list [NodeID (workbench_node_uuids [node_key ])] = [
426426 NodeID (workbench_node_uuids [n ]) for n in next_nodes
427427 ]
@@ -434,7 +434,7 @@ def _convert_to_pipeline_details(
434434 currentStatus = s .get ("currentStatus" , RunningState .NOT_STARTED ),
435435 progress = s .get ("progress" ),
436436 )
437- for n , s in exp_node_states .items ()
437+ for n , s in expected_node_states .items ()
438438 }
439439 pipeline_progress = 0
440440 for node_id in converted_adj_list :
0 commit comments