Add changelog

This commit is contained in:
James Agnew 2019-12-19 15:03:30 -05:00
parent 28fba9734b
commit d050b7b3c2
2 changed files with 8 additions and 1 deletions

View File

@ -40,3 +40,10 @@
issue: "1610"
type: "fix"
title: "A missing mandatory was added to the SNOMED CT CodeSystem that is uploaded when SCT is uploaded to the JPA server. Thanks to Anders Havn for the pull request!"
- item:
issue: 1643
type: fix
title: "When validating resources containing custom valuesets defined in PrePopulatedValidationSupport
outside of the JPA server, sometimes code systems could not be found resulting in false negative
errors."

View File

@ -58,7 +58,7 @@ public class HapiWorkerContextTest extends BaseTest {
// Built-in Codes
vs.setUrl("http://hl7.org/fhir/ValueSet/fm-status");
IWorkerContext.ValidationResult outcome = workerCtx.validateCode(new TerminologyServiceOptions(), "active", vs);
outcome = workerCtx.validateCode(new TerminologyServiceOptions(), "active", vs);
assertEquals(outcome.getMessage(), true, outcome.isOk());
outcome = workerCtx.validateCode(new TerminologyServiceOptions(), "active2", vs);