aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_response.py
diff options
context:
space:
mode:
authorCraig de Stigter2014-10-03 09:00:33 +1300
committerCraig de Stigter2014-10-03 09:00:33 +1300
commit857a8486b1534f89bd482de86d39ff717b6618eb (patch)
treea255416bf8adfef9e3ad9b4e04f01e083ecf0189 /tests/test_response.py
parentdfab9af294972720f59890967cd9ae1a6c0796b6 (diff)
downloaddjango-rest-framework-857a8486b1534f89bd482de86d39ff717b6618eb.tar.bz2
More spelling tweaks
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)