summaryrefslogtreecommitdiff
path: root/tests/handlers/tests.py
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-10-14 09:26:13 +0200
committerClaude Paroz <claude@2xlibre.net>2014-10-14 09:30:26 +0200
commit7131efa154a3e4dd0121503578fa6ca676366431 (patch)
tree20f1baf8a44e5ec811608a36eb19aaad054f4fac /tests/handlers/tests.py
parent905a9a263bea16ce3332870ec7b3e525ff09e978 (diff)
Adapted invalid cookie test to all Python versions
Refs #23638. Older Python versions are less strict when parsing invalid cookie content. The test just has to ensure Django doesn't crash.
Diffstat (limited to 'tests/handlers/tests.py')
-rw-r--r--tests/handlers/tests.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/handlers/tests.py b/tests/handlers/tests.py
index 31a0ac38bb..689b0ed9d8 100644
--- a/tests/handlers/tests.py
+++ b/tests/handlers/tests.py
@@ -88,7 +88,10 @@ class HandlerTests(TestCase):
environ = RequestFactory().get('/').environ
environ['HTTP_COOKIE'] = 'x=W\x03c(h]\x8e'
request = WSGIRequest(environ)
- self.assertEqual(request.COOKIES, {})
+ # We don't test COOKIES content, as the result might differ between
+ # Python version because parsing invalid content became stricter in
+ # latest versions.
+ self.assertIsInstance(request.COOKIES, dict)
@override_settings(ROOT_URLCONF='handlers.urls')