Skip to content

Commit

Permalink
BAH-3500 | Fix of the failing test (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
poojadeshpande01 authored Jan 30, 2024
1 parent 60377f0 commit 9266af6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void shouldMapDosingInstructionsToDrugOrder() {
Concept capsuleConcept = new Concept();
when(orderMetadataService.getDoseUnitsConceptByName(dosingInstructions.getDoseUnits())).thenReturn(capsuleConcept);
Concept routeConcept = new Concept();
when(conceptService.getConceptByName(dosingInstructions.getRoute())).thenReturn(routeConcept);
when(orderMetadataService.getRouteConceptByName(dosingInstructions.getRoute())).thenReturn(routeConcept);
Concept frequencyConcept = new Concept();
when(conceptService.getConceptByName(dosingInstructions.getFrequency())).thenReturn(frequencyConcept);
OrderFrequency orderFrequency = new OrderFrequency();
Expand Down

0 comments on commit 9266af6

Please sign in to comment.