One more fix to test infratructure

This commit is contained in:
James Agnew 2019-10-18 15:57:09 -04:00
parent 0cddb54476
commit 8edaebba9f

View File

@ -44,6 +44,6 @@ public class BaseTest {
protected <T extends IBaseResource> T loadResource(FhirContext theCtx, Class<T> 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);
}
}