aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_response.py
diff options
context:
space:
mode:
authorTom Christie2014-10-03 09:24:26 +0100
committerTom Christie2014-10-03 09:24:26 +0100
commitdd47d8aa459e5ab12ce7ddf2a6f52fdbd82cec18 (patch)
treec5feac5b9d6eb3d4748b33ba74996f4fede5766b /tests/test_response.py
parentfec7c4b45812d22423e73ec3ab801857a55d7340 (diff)
parent857a8486b1534f89bd482de86d39ff717b6618eb (diff)
downloaddjango-rest-framework-dd47d8aa459e5ab12ce7ddf2a6f52fdbd82cec18.tar.bz2
Merge pull request #1921 from koordinates/fix-typos
Minor: fix spelling and grammar, mostly in 3.0 announcement
Diffstat (limited to 'tests/test_response.py')
-rw-r--r--tests/test_response.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_response.py b/tests/test_response.py
index 84c39c1a..f233ae33 100644
--- a/tests/test_response.py
+++ b/tests/test_response.py
@@ -262,9 +262,9 @@ class Issue807Tests(TestCase):
expected = "{0}; charset={1}".format(RendererC.media_type, RendererC.charset)
self.assertEqual(expected, resp['Content-Type'])
- def test_content_type_set_explictly_on_response(self):
+ def test_content_type_set_explicitly_on_response(self):
"""
- The content type may be set explictly on the response.
+ The content type may be set explicitly on the response.
"""
headers = {"HTTP_ACCEPT": RendererC.media_type}
resp = self.client.get('/setbyview', **headers)