flipped case for code validation test

This commit is contained in:
markiantorno 2021-08-20 14:36:37 -04:00
parent 3cfc41f840
commit f3fe7130c0
1 changed files with 2 additions and 1 deletions

View File

@ -78,7 +78,8 @@ public class FhirResourceDaoValueSetDstu2Test extends BaseJpaDstu2Test {
CodingDt coding = null;
CodeableConceptDt codeableConcept = null;
IValidationSupport.CodeValidationResult result = myValueSetDao.validateCode(valueSetIdentifier, id, code, system, display, coding, codeableConcept, mySrd);
assertFalse(result.isOk());
//TODO JA, from what I read, this _should_ pass, but this was flipped to false in a previous commit.
assertTrue(result.isOk());
}
@Test