summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2012-10-26 00:50:25 +0100
committerLuke Plant <L.Plant.98@cantab.net>2012-10-26 00:50:25 +0100
commit71734dfa72140f90c71e199c3a63f47024636df9 (patch)
treecea90d670f3cac1928d87ee2acbac04d95e4e542
parentf3a2bcdee906f7ca1434b6275fdc09b3a454cf46 (diff)
Fixed #19039 - Python 3.3 fails unit test for duplicate bad cookies
Thanks to clelland for the report.
-rw-r--r--tests/regressiontests/httpwrappers/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/httpwrappers/tests.py b/tests/regressiontests/httpwrappers/tests.py
index d908e33fb7..d8b11edb57 100644
--- a/tests/regressiontests/httpwrappers/tests.py
+++ b/tests/regressiontests/httpwrappers/tests.py
@@ -569,7 +569,7 @@ class CookieTests(unittest.TestCase):
"""
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):
"""