diff options
author | aclement <aclement> | 2004-08-05 16:20:15 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-08-05 16:20:15 +0000 |
commit | 7bb1da5328199ec30fd3cddb14abc871580990e5 (patch) | |
tree | f72e189b8f54016129dc79896464cdfe4b8c9717 /util/testsrc | |
parent | 22dc3e73991462bdd99fb34d4ebc2e4b8831a618 (diff) | |
download | aspectj-7bb1da5328199ec30fd3cddb14abc871580990e5.tar.gz aspectj-7bb1da5328199ec30fd3cddb14abc871580990e5.zip |
more diagnostics to help with build failure
Diffstat (limited to 'util/testsrc')
-rw-r--r-- | util/testsrc/org/aspectj/util/FileUtilTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/testsrc/org/aspectj/util/FileUtilTest.java b/util/testsrc/org/aspectj/util/FileUtilTest.java index 74f0e3923..2ae1a7b77 100644 --- a/util/testsrc/org/aspectj/util/FileUtilTest.java +++ b/util/testsrc/org/aspectj/util/FileUtilTest.java @@ -675,7 +675,7 @@ public class FileUtilTest extends TestCase { // halt assertTrue(pipe.halt(true, true)); assertTrue(result.set); - assertTrue(null == result.thrown); + assertTrue("Expected null but result.thrown = "+result.thrown,null == result.thrown); assertTrue(null == pipe.getThrown()); assertEquals("total written", result.totalWritten, pipe.totalWritten()); if (minWritten > pipe.totalWritten()) { |