From 9a8392275f594fef0bb7a3a7e9b2e09d283bd279 Mon Sep 17 00:00:00 2001 From: Grahame Grieve Date: Thu, 30 Mar 2023 23:31:14 +1100 Subject: [PATCH] fix version of test --- .../test/java/org/hl7/fhir/validation/tests/LoadIgTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.hl7.fhir.validation/src/test/java/org/hl7/fhir/validation/tests/LoadIgTests.java b/org.hl7.fhir.validation/src/test/java/org/hl7/fhir/validation/tests/LoadIgTests.java index 80d6d0d3a..e9dbba801 100644 --- a/org.hl7.fhir.validation/src/test/java/org/hl7/fhir/validation/tests/LoadIgTests.java +++ b/org.hl7.fhir.validation/src/test/java/org/hl7/fhir/validation/tests/LoadIgTests.java @@ -59,7 +59,7 @@ public class LoadIgTests { hl7Validator.prepare(); IgLoader igLoader = new IgLoader(hl7Validator.getPcm(), hl7Validator.getContext(), hl7Validator.getVersion(), true); - byte[] b = TextFile.streamToBytes(TestingUtilities.loadTestResourceStream("r5", "snapshot-generation", "t34-expected.xml")); // yes the choice of R5 is deliberate here - it's the same content as R4. + byte[] b = TextFile.streamToBytes(TestingUtilities.loadTestResourceStream("r4b", "snapshot-generation", "t34-expected.xml")); // yes the choice of R5 is deliberate here - it's the same content as R4. for (int i = 0; i < DO_TIMES; i++) { System.gc();