fix bug in testing for validation cases

This commit is contained in:
Grahame Grieve 2020-03-10 06:47:55 +11:00
parent fe188da8bd
commit d77b687d95
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ public class ValidationTestSuite implements IEvaluationContext, IValidatorResour
}
}
}
if (TestingUtilities.context(version).isNoTerminologyServer() || !focus.has("tx-dependent")) {
if (!TestingUtilities.context(version).isNoTerminologyServer() || !focus.has("tx-dependent")) {
Assert.assertEquals("Expected "+Integer.toString(java.get("errorCount").getAsInt())+" errors, but found "+Integer.toString(ec)+".", java.get("errorCount").getAsInt(), ec);
if (java.has("warningCount"))
Assert.assertEquals("Expected "+Integer.toString(java.get("warningCount").getAsInt())+" warnings, but found "+Integer.toString(wc)+".", java.get("warningCount").getAsInt(), wc);