From: maxcooper Date: Mon, 7 Jul 2003 13:14:07 +0000 (+0000) Subject: removed System.out.println debug message X-Git-Tag: rel-2_0-alpha1~55 X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=213cfbd745e5adc73052b79e94d9505f11e1f599;p=securityfilter.git removed System.out.println debug message --- diff --git a/src/test/org/securityfilter/test/http/form/PostMethodTest.java b/src/test/org/securityfilter/test/http/form/PostMethodTest.java index df7b994..d259125 100644 --- a/src/test/org/securityfilter/test/http/form/PostMethodTest.java +++ b/src/test/org/securityfilter/test/http/form/PostMethodTest.java @@ -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); } }