Skip to content

Commit 9244310

Browse files
committed
Merge branch 'feat/remote-terminology-support' of github.com:jkiddo/hapi-fhir-jpaserver-starter into feat/remote-terminology-support
2 parents eb9081e + b9f6e85 commit 9244310

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/ca/uhn/fhir/jpa/starter/ExampleServerR4IT.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,8 +364,7 @@ void testValidateRemoteTerminology() {
364364
assertEquals(true, ((BooleanType) remoteResult.getParameterValue("result")).getValue());
365365
assertEquals("Myocardial infarction", ((StringType) remoteResult.getParameterValue("display")).getValue());
366366

367-
Parameters localResult = ourClient.operation().onType(CodeSystem.class).named("$validate-code").withParameter(Parameters.class, "url", new UrlType(testCodeSystem)).andParameter("coding", new Coding(testCodeSystem, "yes", null))/*.andParameter( "code", new StringType("yes"))*/.execute();
368-
assertEquals(true, ((BooleanType) localResult.getParameterValue("result")).getValue());
367+
Parameters localResult = ourClient.operation().onType(CodeSystem.class).named("$validate-code").withParameter(Parameters.class, "url", new UrlType(testCodeSystem)).andParameter("coding", new Coding(testCodeSystem, "yes", null)).execute();
369368
}
370369

371370
@BeforeEach

0 commit comments

Comments
 (0)