craigmcc    01/08/21 21:17:42

  Modified:    workflow/src/test/org/apache/commons/workflow/io
                        IOExecuteTestCase.java
  Log:
  oops .. correct a typo on a test assertion.
  
  Revision  Changes    Path
  1.2       +5 -5      
jakarta-commons-sandbox/workflow/src/test/org/apache/commons/workflow/io/IOExecuteTestCase.java
  
  Index: IOExecuteTestCase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons-sandbox/workflow/src/test/org/apache/commons/workflow/io/IOExecuteTestCase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IOExecuteTestCase.java    2001/08/22 04:14:15     1.1
  +++ IOExecuteTestCase.java    2001/08/22 04:17:41     1.2
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-commons-sandbox/workflow/src/test/org/apache/commons/workflow/io/IOExecuteTestCase.java,v
 1.1 2001/08/22 04:14:15 craigmcc Exp $
  - * $Revision: 1.1 $
  - * $Date: 2001/08/22 04:14:15 $
  + * $Header: 
/home/cvs/jakarta-commons-sandbox/workflow/src/test/org/apache/commons/workflow/io/IOExecuteTestCase.java,v
 1.2 2001/08/22 04:17:41 craigmcc Exp $
  + * $Revision: 1.2 $
  + * $Date: 2001/08/22 04:17:41 $
    *
    * ====================================================================
    *
  @@ -87,7 +87,7 @@
    * implementations.</p>
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.1 $ $Date: 2001/08/22 04:14:15 $
  + * @version $Revision: 1.2 $ $Date: 2001/08/22 04:17:41 $
    */
   
   public class IOExecuteTestCase extends TestCase
  @@ -181,7 +181,7 @@
   
           // Identify the URL path we will be accessing
           String url = System.getProperty("ioexecute.url");
  -        assertNotNull("The 'ioexecute.url' system property is set");
  +        assertNotNull("The 'ioexecute.url' system property is set", url);
   
           // Configure the steps in this activity
           activity.addStep(new GetStep("01", url));
  
  
  

Reply via email to