Skip to content

Commit

Permalink
Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
mwithi committed Oct 15, 2024
1 parent 72c03fc commit 7dbf34d
Show file tree
Hide file tree
Showing 2 changed files with 221 additions and 200 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ public Lot getLot(String lotCode) throws OHServiceException {
public List<Lot> updateLot(List<Lot> lots) throws OHServiceException {
List<Lot> updatedLots = new ArrayList<>();
for (Lot lot : lots) {
Lot updatedLot = ioOperations.updateLot(lot);
Lot updatedLot = updateLot(lot);
updatedLots.add(updatedLot);
}
return updatedLots;
Expand Down
Loading

0 comments on commit 7dbf34d

Please sign in to comment.