Skip to content

Commit

Permalink
update fixtures and get unit tests working
Browse files Browse the repository at this point in the history
  • Loading branch information
mbthornton-lbl committed Nov 23, 2024
1 parent 19f4e31 commit 845130b
Show file tree
Hide file tree
Showing 3 changed files with 471 additions and 233 deletions.
2 changes: 1 addition & 1 deletion nmdc_automation/workflow_automation/workflow_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def _map_nodes_to_data_objects(current_nodes: List[WorkflowProcessNode], require
"""
node_data_object_map = dict()
for node in current_nodes:
for data_object_id in node.has_output + node.has_input:
for data_object_id in node.has_output:
if data_object_id in required_data_object_map:
do = required_data_object_map[data_object_id]
node.add_data_object(do)
Expand Down
Loading

0 comments on commit 845130b

Please sign in to comment.