luetzkendorf    2005/02/21 09:48:01

  Modified:    
testsuite/testsuite/junit/src/org/apache/slide/testsuite/testtools/tprocessor
                        TErrorsReport.java
  Log:
  fix according bug 33213
  
  Revision  Changes    Path
  1.8       +5 -4      
jakarta-slide/testsuite/testsuite/junit/src/org/apache/slide/testsuite/testtools/tprocessor/TErrorsReport.java
  
  Index: TErrorsReport.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/testsuite/testsuite/junit/src/org/apache/slide/testsuite/testtools/tprocessor/TErrorsReport.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- TErrorsReport.java        28 Jul 2004 09:31:55 -0000      1.7
  +++ TErrorsReport.java        21 Feb 2005 17:48:00 -0000      1.8
  @@ -132,12 +132,13 @@
                   String cause = null;
                   error = false;
                   Element tc = (Element)tci.next();
  -                Iterator xsi = tc.getChildren("exceuteStep").iterator();
  +                Iterator xsi = tc.getChildren("executeStep").iterator();
                   cause = "";
                   while( xsi.hasNext() ) {
                       Element xs = (Element)xsi.next();
                       Element r = xs.getChild("result");
                       if( "Success".equals(r.getText()) )
  +                    if( r!=null && r.getText()!=null && 
"Success".equals(r.getText()) )
                           continue;
                       error = true;
                       errors++;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to