Skip to content

Commit

Permalink
Fixed split_single_group_by_donor_ids call
Browse files Browse the repository at this point in the history
  • Loading branch information
yoldas committed Feb 23, 2024
1 parent e1a4003 commit d92ae65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/labware_creators/donor_pooling_plate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def group_by_study_and_project
# @param groups [Array<Array<Well>>] Array of well groups to be split.
# @return [Array<Array<Well>>] Array of subgroups split by donor ID.
def split_groups_by_donor_ids(groups)
groups.flat_map { |group| split_group_by_donor_ids(group) }
groups.flat_map { |group| split_single_group_by_donor_ids(group) }

Check warning on line 156 in app/models/labware_creators/donor_pooling_plate.rb

View check run for this annotation

Codecov / codecov/patch

app/models/labware_creators/donor_pooling_plate.rb#L156

Added line #L156 was not covered by tests
end

# Splits a single group of wells by donor_ids. Used by the
Expand Down

0 comments on commit d92ae65

Please sign in to comment.