summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Christie <tom@tomchristie.com>2013-06-14 09:17:33 +0100
committerTom Christie <tom@tomchristie.com>2013-06-14 09:17:33 +0100
commit1b19f9e9e7db5f45c44e840ca709b1566a989efa (patch)
tree7b11cf7fc776f04c324645dde318ff21c28f5a21
parentadeec00979d1b365535b8f26fda4a5f7173e975d (diff)
Remove incorrect CONTENT_TYPE header from GET and HEAD requests
-rw-r--r--django/test/client.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/django/test/client.py b/django/test/client.py
index 46f55d7cdc..46ce653627 100644
--- a/django/test/client.py
+++ b/django/test/client.py
@@ -272,7 +272,6 @@ class RequestFactory(object):
parsed = urlparse(path)
r = {
- 'CONTENT_TYPE': str('text/html; charset=utf-8'),
'PATH_INFO': self._get_path(parsed),
'QUERY_STRING': urlencode(data, doseq=True) or force_str(parsed[4]),
'REQUEST_METHOD': str('GET'),
@@ -303,7 +302,6 @@ class RequestFactory(object):
parsed = urlparse(path)
r = {
- 'CONTENT_TYPE': str('text/html; charset=utf-8'),
'PATH_INFO': self._get_path(parsed),
'QUERY_STRING': urlencode(data, doseq=True) or force_str(parsed[4]),
'REQUEST_METHOD': str('HEAD'),