You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cactus-dev@jakarta.apache.org by vm...@apache.org on 2002/10/05 17:09:20 UTC

cvs commit: jakarta-cactus/sample-servlet/src/unit/share/org/apache/cactus/unit TestServletTestCase2.java

vmassol     2002/10/05 08:09:19

  Modified:    sample-servlet/src/unit/share/org/apache/cactus/unit
                        TestServletTestCase2.java
  Log:
  stay compatible with JUnit 3.7
  
  Revision  Changes    Path
  1.13      +3 -3      jakarta-cactus/sample-servlet/src/unit/share/org/apache/cactus/unit/TestServletTestCase2.java
  
  Index: TestServletTestCase2.java
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/sample-servlet/src/unit/share/org/apache/cactus/unit/TestServletTestCase2.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- TestServletTestCase2.java	26 Sep 2002 21:27:50 -0000	1.12
  +++ TestServletTestCase2.java	5 Oct 2002 15:09:19 -0000	1.13
  @@ -911,8 +911,8 @@
        */
       public void testCreateSessionCookie()
       {
  -        assertFalse("A session should have been created prior to "
  -            + "this request", session.isNew());
  +        assertTrue("A session should have been created prior to "
  +            + "this request", !session.isNew());
       }
   
   }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>