You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by cu...@locus.apache.org on 2000/12/04 18:08:12 UTC

cvs commit: xml-xalan/test/java/src/org/apache/qetest/xsl XSLProcessorTestBase.java

curcuru     00/12/04 09:08:12

  Modified:    test/java/src/org/apache/qetest/xsl
                        XSLProcessorTestBase.java
  Log:
  Fix potential bug in preTestFileInit(); now pass testProps to reporter
  
  Revision  Changes    Path
  1.2       +2 -2      xml-xalan/test/java/src/org/apache/qetest/xsl/XSLProcessorTestBase.java
  
  Index: XSLProcessorTestBase.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/test/java/src/org/apache/qetest/xsl/XSLProcessorTestBase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSLProcessorTestBase.java	2000/11/01 23:26:57	1.1
  +++ XSLProcessorTestBase.java	2000/12/04 17:08:11	1.2
  @@ -90,7 +90,7 @@
    * <li>runErr</li>
    * </ul>
    * @author Shane_Curcuru@lotus.com
  - * @version $Id: XSLProcessorTestBase.java,v 1.1 2000/11/01 23:26:57 curcuru Exp $
  + * @version $Id: XSLProcessorTestBase.java,v 1.2 2000/12/04 17:08:11 curcuru Exp $
    */
   public class XSLProcessorTestBase extends FileBasedTest
   {
  @@ -309,7 +309,7 @@
           //  so it can use the same values in initialization
           // A Reporter will auto-initialize from the values
           //  in the properties block
  -        setReporter(new Reporter(p));
  +        setReporter(new Reporter(testProps));
           reporter.addDefaultLogger();  // add default logger if needed
           reporter.testFileInit(testName, testComment);