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:55:31 +0100
commitc426d5665095e7b91df69e54d4773180b12ff548 (patch)
tree388d0b812cd7db6def909185bce2509af94e9f31
parent142f69eb8c79ea5a54799354231b219f7c53b1cc (diff)
[1.5.x] Fixed #19039 - Python 3.3 fails unit test for duplicate bad cookies
Thanks to clelland for the report. Backport of 71734dfa72140f90c71e199c3a63f47024636df9 from master.
-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):
"""