craigmcc 01/11/19 16:37:25 Modified: digester build.xml digester/src/test/org/apache/commons/digester TestRule.java Log: Fix the broken test on BeanPropertySetterRule, and include it in the default "ant test" execution. Submitted by: Robert Burrell Donkin <[EMAIL PROTECTED]> Revision Changes Path 1.16 +3 -2 jakarta-commons/digester/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-commons/digester/build.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- build.xml 2001/11/14 19:54:05 1.15 +++ build.xml 2001/11/20 00:37:25 1.16 @@ -3,7 +3,7 @@ <!-- "Digester" component of the Jakarta Commons Subproject - $Id: build.xml,v 1.15 2001/11/14 19:54:05 craigmcc Exp $ + $Id: build.xml,v 1.16 2001/11/20 00:37:25 craigmcc Exp $ --> @@ -234,7 +234,8 @@ test.digester, test.matching, test.matching.extended, - test.rule + test.rule, + test.bpsr " description="Run all unit test cases"> </target> 1.4 +2 -2 jakarta-commons/digester/src/test/org/apache/commons/digester/TestRule.java Index: TestRule.java =================================================================== RCS file: /home/cvs/jakarta-commons/digester/src/test/org/apache/commons/digester/TestRule.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- TestRule.java 2001/11/14 19:54:05 1.3 +++ TestRule.java 2001/11/20 00:37:25 1.4 @@ -69,7 +69,7 @@ * at the identifier.</p> * * @author Robert Burrell Donkin - * @revision $Revision: 1.3 $ $Date: 2001/11/14 19:54:05 $ + * @revision $Revision: 1.4 $ $Date: 2001/11/20 00:37:25 $ */ public class TestRule extends Rule { @@ -136,7 +136,7 @@ * 'Body' call. */ public void body(String text) { - this.bodyText = bodyText; + this.bodyText = text; appendCall(); }
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>