summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2009-05-08 11:13:17 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2009-05-08 11:13:17 +0000
commit4f383e2939d3a6d6b56e9032c926b181351bf6b8 (patch)
treed5c67e012449489609c0b21e6396029e72e45450 /tests
parent864b78135a61e33e4433c95fd760d04ed8fe4c50 (diff)
downloaddjango-4f383e2939d3a6d6b56e9032c926b181351bf6b8.tar.gz
Reverted r10709 which I applied to the wrong branch. Sorry for my git-svn fail!
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10710 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
-rw-r--r--tests/regressiontests/httpwrappers/tests.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/regressiontests/httpwrappers/tests.py b/tests/regressiontests/httpwrappers/tests.py
index 04099be16e..15b872821c 100644
--- a/tests/regressiontests/httpwrappers/tests.py
+++ b/tests/regressiontests/httpwrappers/tests.py
@@ -444,17 +444,6 @@ Traceback (most recent call last):
...
UnicodeEncodeError: ..., HTTP response headers must be in US-ASCII format
-# Bug #10188: Do not allow newlines in headers (CR or LF)
->>> r['test\\rstr'] = 'test'
-Traceback (most recent call last):
-...
-BadHeaderError: Header values can't contain newlines (got 'test\\rstr')
-
->>> r['test\\nstr'] = 'test'
-Traceback (most recent call last):
-...
-BadHeaderError: Header values can't contain newlines (got 'test\\nstr')
-
#
# Regression test for #8278: QueryDict.update(QueryDict)
#