diff --git a/test_src/com/webcodepro/shrinkit/io/TestCaseHelper.java b/test_src/com/webcodepro/shrinkit/io/TestCaseHelper.java index ace5676..131d888 100644 --- a/test_src/com/webcodepro/shrinkit/io/TestCaseHelper.java +++ b/test_src/com/webcodepro/shrinkit/io/TestCaseHelper.java @@ -12,7 +12,7 @@ public abstract class TestCaseHelper extends TestCase { * Compare two byte arrays. */ public void assertEquals(byte[] expected, byte[] actual) { - assertEquals(expected.length, actual.length); + assertEquals("Length mismatch", expected.length, actual.length); for (int i=0; i