Skip to content

Commit

Permalink
flipped case for code validation test
Browse files Browse the repository at this point in the history
  • Loading branch information
markiantorno committed Aug 20, 2021
1 parent 3cfc41f commit f3fe713
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ public void testValidateCodeOperationByIdentifierCodeInCsButNotInVs() {
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
Expand Down

0 comments on commit f3fe713

Please sign in to comment.