Skip to content

Commit

Permalink
Updated concept ids for order frequency in OrderFrequencyIntegrationTest
Browse files Browse the repository at this point in the history
  • Loading branch information
wluyima committed Feb 25, 2014
1 parent 97dc0ab commit 3a9e948
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/test/java/org/openmrs/OrderEntryIntegrationTest.java
Expand Up @@ -91,7 +91,7 @@ public void shouldPlaceADrugOrder() throws Exception {
order.setDuration(20.0);
Concept days = conceptService.getConcept(1002);
order.setDurationUnits(days);
OrderFrequency onceDaily = orderService.getOrderFrequency(1003);
OrderFrequency onceDaily = orderService.getOrderFrequency(3000);
order.setFrequency(onceDaily);

orderService.saveOrder(order);
Expand All @@ -114,7 +114,7 @@ public void shouldPlaceATestOrder() throws Exception {
order.setCareSetting(careSetting);
order.setStartDate(new Date());
order.setClinicalHistory("Patient had a negative reaction to the test in the past");
order.setFrequency(orderService.getOrderFrequency(1));
order.setFrequency(orderService.getOrderFrequency(3000));
order.setSpecimenSource(conceptService.getConcept(1000));
order.setNumberOfRepeats(3);

Expand Down

0 comments on commit 3a9e948

Please sign in to comment.