more fix for when no errors found

This commit is contained in:
Grahame Grieve 2020-06-19 11:30:31 +10:00
parent 2139a54a87
commit b6a3a54d12
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ public class ValidationEngineTests {
}
Assertions.assertEquals(0, e);
Assertions.assertEquals(0, w);
Assertions.assertEquals(0, h);
Assertions.assertEquals(1, h);
}
@Test
@ -52,7 +52,7 @@ public class ValidationEngineTests {
int h = hints(op);
Assertions.assertEquals(0, e);
Assertions.assertEquals(0, w);
Assertions.assertEquals(0, h);
Assertions.assertEquals(1, h);
if (!TestUtilities.silent)
System.out.println(" .. done: " + Integer.toString(e) + " errors, " + Integer.toString(w) + " warnings, " + Integer.toString(h) + " information messages");
}