Author: markt Date: Fri Jun 6 19:33:36 2014 New Revision: 1600988 URL: http://svn.apache.org/r1600988 Log: Correct bug reference. These are all V1 cookies. bug 55975 is a V0 cookie issue
Modified: tomcat/trunk/test/org/apache/tomcat/util/http/TestSetCookieSupportSeparatorsAllowed.java Modified: tomcat/trunk/test/org/apache/tomcat/util/http/TestSetCookieSupportSeparatorsAllowed.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/util/http/TestSetCookieSupportSeparatorsAllowed.java?rev=1600988&r1=1600987&r2=1600988&view=diff ============================================================================== --- tomcat/trunk/test/org/apache/tomcat/util/http/TestSetCookieSupportSeparatorsAllowed.java (original) +++ tomcat/trunk/test/org/apache/tomcat/util/http/TestSetCookieSupportSeparatorsAllowed.java Fri Jun 6 19:33:36 2014 @@ -164,7 +164,7 @@ public class TestSetCookieSupportSeparat Assert.assertEquals("foo=\"a\\\"b\"; Version=1", SetCookieSupport.generateHeader(cookie)); } - @Ignore("bug 55975") + @Ignore("bug 55984") @Test public void v1ValueContainsNonV0Separator() { Cookie cookie = new Cookie("foo", "a()<>@,;:\\\"/[]?={}b"); @@ -173,7 +173,7 @@ public class TestSetCookieSupportSeparat Assert.assertEquals("foo=\"a()<>@,;:\\\\\\\"/[]?={}b\"; Version=1", SetCookieSupport.generateHeader(cookie)); } - @Ignore("bug 55975") + @Ignore("bug 55984") @Test public void v1ValueContainsBackslash() { Cookie cookie = new Cookie("foo", "a\\b"); @@ -183,7 +183,7 @@ public class TestSetCookieSupportSeparat } - @Ignore("bug 55975") + @Ignore("bug 55984") @Test public void v1ValueContainsBackslashAndQuote() { Cookie cookie = new Cookie("foo", "a\"b\\c"); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org