You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/09/12 09:05:42 UTC

[camel-spring-boot] branch main updated: Upgrade failing test to FHIR 6.6.1 (#931)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
     new 0d365fd4877 Upgrade failing test to FHIR 6.6.1 (#931)
0d365fd4877 is described below

commit 0d365fd48771d0f8a599154c908db179a1f9ebbe
Author: Federico Mariani <34...@users.noreply.github.com>
AuthorDate: Tue Sep 12 11:05:37 2023 +0200

    Upgrade failing test to FHIR 6.6.1 (#931)
---
 .../src/test/java/org/apache/camel/component/fhir/FhirUpdateIT.java  | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/components-starter/camel-fhir-starter/src/test/java/org/apache/camel/component/fhir/FhirUpdateIT.java b/components-starter/camel-fhir-starter/src/test/java/org/apache/camel/component/fhir/FhirUpdateIT.java
index c1056cc0bb2..3e3c3e072dc 100644
--- a/components-starter/camel-fhir-starter/src/test/java/org/apache/camel/component/fhir/FhirUpdateIT.java
+++ b/components-starter/camel-fhir-starter/src/test/java/org/apache/camel/component/fhir/FhirUpdateIT.java
@@ -16,7 +16,6 @@
  */
 package org.apache.camel.component.fhir;
 
-import java.net.URLEncoder;
 import java.text.SimpleDateFormat;
 import java.util.Date;
 import java.util.HashMap;
@@ -164,7 +163,7 @@ public class FhirUpdateIT extends AbstractFhirTestSupport {
         Date date = new SimpleDateFormat("yyyy-MM-dd").parse("1998-04-29");
         assertNotEquals(date, patient.getBirthDate());
         this.patient.setBirthDate(date);
-        String url = "Patient?" + Patient.SP_IDENTIFIER + '=' + URLEncoder.encode(this.patient.getId(), "UTF-8");
+        String url = "Patient?" + Patient.SP_RES_ID + '=' + patient.getIdPart();
         final Map<String, Object> headers = new HashMap<>();
         // parameter type is org.hl7.fhir.instance.model.api.IBaseResource
         headers.put("CamelFhir.resource", this.patient);
@@ -185,7 +184,7 @@ public class FhirUpdateIT extends AbstractFhirTestSupport {
         Date date = new SimpleDateFormat("yyyy-MM-dd").parse("1998-04-29");
         assertNotEquals(date, patient.getBirthDate());
         this.patient.setBirthDate(date);
-        String url = "Patient?" + Patient.SP_IDENTIFIER + '=' + URLEncoder.encode(this.patient.getId(), "UTF-8");
+        String url = "Patient?" + Patient.SP_RES_ID + '=' + patient.getIdPart();
         final Map<String, Object> headers = new HashMap<>();
         // parameter type is org.hl7.fhir.instance.model.api.IBaseResource
         headers.put("CamelFhir.resourceAsString", this.fhirContext.newJsonParser().encodeResourceToString(this.patient));