Skip to content

Commit

Permalink
fix checkstyle issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dehall committed Oct 31, 2024
1 parent 814bdd2 commit 661207a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import ca.uhn.fhir.parser.IParser;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
Expand Down Expand Up @@ -60,8 +62,6 @@
import org.mitre.synthea.export.FhirR4;
import org.mitre.synthea.world.agents.Person;

import ca.uhn.fhir.parser.IParser;

public class ActionsTest {

private static Map<String, String> buildApplyProfileAction(String profile, String applicability) {
Expand Down Expand Up @@ -514,8 +514,8 @@ public void testDeleteResources() throws Exception {
// this would work as of today but not guaranteed
// assertTrue(r == c3);
assertTrue(r instanceof Condition);
Condition cOut = (Condition)r;
assertEquals("49727002", cOut.getCode().getCodingFirstRep().getCode());
Condition conditionOut = (Condition)r;
assertEquals("49727002", conditionOut.getCode().getCodingFirstRep().getCode());
}

@Test
Expand Down

0 comments on commit 661207a

Please sign in to comment.