Fix expected message

This commit is contained in:
dotasek 2024-11-25 16:26:20 -05:00
parent 5f3bbd7d2c
commit 59cf44c606
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ public class MdmRuleValidatorTest extends BaseR4Test {
try {
setMdmRuleJson("bad-rules-bad-fhirpath.json");
fail(); } catch (ConfigurationException e) {
assertThat(e.getMessage()).startsWith(Msg.code(1518) + "MatchField [given-name] resourceType [Patient] has failed FHIRPath evaluation. Error in ?? at 1, 1: The name blurst is not a valid function name");
assertThat(e.getMessage()).startsWith(Msg.code(1518) + "MatchField [given-name] resourceType [Patient] has failed FHIRPath evaluation. Error @1, 1: The name blurst is not a valid function name");
}
}