removed System.out.println debug message
authormaxcooper <maxcooper>
Mon, 7 Jul 2003 13:14:07 +0000 (13:14 +0000)
committermaxcooper <maxcooper>
Mon, 7 Jul 2003 13:14:07 +0000 (13:14 +0000)
src/test/org/securityfilter/test/http/form/PostMethodTest.java

index df7b994..d259125 100644 (file)
@@ -1,7 +1,7 @@
 /*
- * $Header: /cvsroot/securityfilter/securityfilter/src/test/org/securityfilter/test/http/form/PostMethodTest.java,v 1.2 2003/07/07 04:18:49 maxcooper Exp $
- * $Revision: 1.2 $
- * $Date: 2003/07/07 04:18:49 $
+ * $Header: /cvsroot/securityfilter/securityfilter/src/test/org/securityfilter/test/http/form/PostMethodTest.java,v 1.3 2003/07/07 13:14:07 maxcooper Exp $
+ * $Revision: 1.3 $
+ * $Date: 2003/07/07 13:14:07 $
  *
  * ====================================================================
  * The SecurityFilter Software License, Version 1.1
@@ -63,7 +63,7 @@ import org.securityfilter.test.http.TestBase;
  * LogoutTest - tests the logout functionality.
  *
  * @author Max Cooper (max@maxcooper.com)
- * @version $Revision: 1.2 $ $Date: 2003/07/07 04:18:49 $
+ * @version $Revision: 1.3 $ $Date: 2003/07/07 13:14:07 $
  */
 public class PostMethodTest extends TestBase {
    private static final String POST_VALUE = "it works!";
@@ -106,7 +106,6 @@ public class PostMethodTest extends TestBase {
       // make sure the item we submitted is present
       TableCell postedValue = (TableCell) response.getElementWithID(Constants.SECURE_POSTED_VALUE_ID);
       assertNotNull("POSTed parameter not found in reponse", postedValue);
-      System.out.println("postedValue.asText() = \"" + postedValue.asText() + "\"");
       assertEquals("POSTed parameter did not have the right value", postedValue.asText(), POST_VALUE);
    }
 }