Removed unnecessary System.out.println

This commit is contained in:
Trustin Lee 2009-03-16 04:38:43 +00:00
parent 9b0bf68148
commit 880241366b

View File

@ -51,8 +51,9 @@ public class CookieEncoderTest {
cookie.setPath("/apathsomewhere");
cookie.setPorts(80, 8080);
cookie.setSecure(true);
String encodedCookie = encoder.encode();
System.out.println(encodedCookie);
long currentTime = System.currentTimeMillis();
assertTrue(
encodedCookie.equals(result.replace("XXX", df.format(new Date(currentTime + 50000)))) ||