? chain/src/test/org/apache/commons/chain/generic Index: chain/src/test/org/apache/commons/chain/impl/ChainBaseTestCase.java =================================================================== RCS file: /home/cvspublic/jakarta-commons/chain/src/test/org/apache/commons/chain/impl/ChainBaseTestCase.java,v retrieving revision 1.5 diff -u -r1.5 ChainBaseTestCase.java --- chain/src/test/org/apache/commons/chain/impl/ChainBaseTestCase.java 25 Feb 2004 00:01:05 -0000 1.5 +++ chain/src/test/org/apache/commons/chain/impl/ChainBaseTestCase.java 7 Jan 2005 19:00:12 -0000 @@ -353,7 +353,7 @@ // Verify the contents of the execution log protected void checkExecuteLog(String expected) { StringBuffer log = (StringBuffer) context.get("log"); - assertNotNull("Context returned log"); + assertNotNull("Context failed to return log", log); assertEquals("Context returned correct log", expected, log.toString()); }