Grr. Remove comment markers.
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 4 Jan 2011 19:09:06 +0000 (19:09 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 4 Jan 2011 19:09:06 +0000 (19:09 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1055141 13f79535-47bb-0310-9956-ffa450edef68

test/org/apache/tomcat/util/http/TestCookies.java

index cd7b5c5..0834d34 100644 (file)
@@ -102,13 +102,11 @@ public class TestCookies extends TestCase {
 
     public void testNameOnlyCookies() throws Exception {
         // Bug 49000
-        /*
         test("fred=1; jim=2; bob", "fred", "1", "jim", "2", "bob", "");
         test("fred=1; jim=2; bob; george=3", "fred", "1", "jim", "2", "bob", "",
                 "george", "3");
         test("fred=1; jim=2; bob=; george=3", "fred", "1", "jim", "2",
                 "bob", "", "george", "3");
-        */                    
         test("fred=1; jim=2; bob=", "fred", "1", "jim", "2", "bob", "");
     }