Skip to content

Commit

Permalink
Mention the source in the assertion failure
Browse files Browse the repository at this point in the history
Co-authored-by: Markus Scherer <[email protected]>
  • Loading branch information
eggrobin and markusicu authored May 24, 2024
1 parent f02b9b9 commit ac7668b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ void testSRC_UCD_DIR() {
@Test
void testUnicodeInvariants() throws IOException {
int rc = TestUnicodeInvariants.testInvariants(null, true);
assertEquals(0, rc, "TestUnicodeInvariants.testInvariants() failed");
assertEquals(0, rc, "TestUnicodeInvariants.testInvariants(default) failed");
}

@Test
void testSecurityInvariants() throws IOException {
int rc = TestUnicodeInvariants.testInvariants("SecurityInvariantTest.txt", true);
assertEquals(0, rc, "TestUnicodeInvariants.testInvariants() failed");
assertEquals(0, rc, "TestUnicodeInvariants.testInvariants(security) failed");
}
}

0 comments on commit ac7668b

Please sign in to comment.