From b9f6e853ac3d103bfc80437eb00928f82412f87c Mon Sep 17 00:00:00 2001 From: Jens Kristian Villadsen Date: Tue, 29 Apr 2025 12:08:42 +0200 Subject: [PATCH] Update src/test/java/ca/uhn/fhir/jpa/starter/ExampleServerR4IT.java Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/test/java/ca/uhn/fhir/jpa/starter/ExampleServerR4IT.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/test/java/ca/uhn/fhir/jpa/starter/ExampleServerR4IT.java b/src/test/java/ca/uhn/fhir/jpa/starter/ExampleServerR4IT.java index 9ea850c..2779c35 100644 --- a/src/test/java/ca/uhn/fhir/jpa/starter/ExampleServerR4IT.java +++ b/src/test/java/ca/uhn/fhir/jpa/starter/ExampleServerR4IT.java @@ -364,8 +364,7 @@ class ExampleServerR4IT implements IServerSupport { assertEquals(true, ((BooleanType) remoteResult.getParameterValue("result")).getValue()); assertEquals("Myocardial infarction", ((StringType) remoteResult.getParameterValue("display")).getValue()); - 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(); - assertEquals(true, ((BooleanType) localResult.getParameterValue("result")).getValue()); + 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(); } @BeforeEach