From 944be1cfba87479fac519dd476b2427823dcb794 Mon Sep 17 00:00:00 2001 From: Grahame Grieve Date: Thu, 29 Oct 2020 13:57:25 +1100 Subject: [PATCH] fix bug with wrong value for contentReference in derived profiles (profiles do not and cannot change the value) (missed testing change) --- .../test/java/org/hl7/fhir/r5/test/ProfileUtilitiesTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/org.hl7.fhir.r5/src/test/java/org/hl7/fhir/r5/test/ProfileUtilitiesTests.java b/org.hl7.fhir.r5/src/test/java/org/hl7/fhir/r5/test/ProfileUtilitiesTests.java index 08b9264e2..0c53d558b 100644 --- a/org.hl7.fhir.r5/src/test/java/org/hl7/fhir/r5/test/ProfileUtilitiesTests.java +++ b/org.hl7.fhir.r5/src/test/java/org/hl7/fhir/r5/test/ProfileUtilitiesTests.java @@ -104,6 +104,8 @@ public class ProfileUtilitiesTests { f.setComment(null); b.setDefinition(null); f.setDefinition(null); + b.setContentReference(null); + f.setContentReference(null); ok = Base.compareDeep(b, f, true); } }