From 8edaebba9f1218cca898a0db6641ed6d58df95f1 Mon Sep 17 00:00:00 2001 From: James Agnew Date: Fri, 18 Oct 2019 15:57:09 -0400 Subject: [PATCH] One more fix to test infratructure --- .../src/main/java/ca/uhn/fhir/test/BaseTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/BaseTest.java b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/BaseTest.java index 009de0a5ae9..34203d2fb4e 100644 --- a/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/BaseTest.java +++ b/hapi-fhir-test-utilities/src/main/java/ca/uhn/fhir/test/BaseTest.java @@ -44,6 +44,6 @@ public class BaseTest { protected T loadResource(FhirContext theCtx, Class theType, String theClasspath) throws IOException { String raw = loadResource(theClasspath); - EncodingEnum.detectEncodingNoDefault(raw).newParser(theCtx).parseResource(theType, raw); + return EncodingEnum.detectEncodingNoDefault(raw).newParser(theCtx).parseResource(theType, raw); } }