Kaydet (Commit) 71734dfa authored tarafından Luke Plant's avatar Luke Plant

Fixed #19039 - Python 3.3 fails unit test for duplicate bad cookies

Thanks to clelland for the report.
üst f3a2bcde
...@@ -569,7 +569,7 @@ class CookieTests(unittest.TestCase): ...@@ -569,7 +569,7 @@ class CookieTests(unittest.TestCase):
""" """
Test that a repeated non-standard name doesn't affect all cookies. Ticket #15852 Test that a repeated non-standard name doesn't affect all cookies. Ticket #15852
""" """
self.assertTrue('good_cookie' in parse_cookie('a,=b; a,=c; good_cookie=yes').keys()) self.assertTrue('good_cookie' in parse_cookie('a:=b; a:=c; good_cookie=yes').keys())
def test_httponly_after_load(self): def test_httponly_after_load(self):
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment