Fixed #24137 -- Switched to HTTP reason phrases from Python stdlib.

This commit is contained in:
Jon Dufresne 2015-01-13 11:29:07 -08:00 committed by Tim Graham
parent 0f3ea8c0bc
commit 24b2bc635e
5 changed files with 26 additions and 72 deletions

View file

@ -50,9 +50,9 @@ class HttpResponseBaseTests(SimpleTestCase):
class HttpResponseTests(SimpleTestCase):
def test_status_code(self):
resp = HttpResponse(status=418)
self.assertEqual(resp.status_code, 418)
self.assertEqual(resp.reason_phrase, "I'M A TEAPOT")
resp = HttpResponse(status=503)
self.assertEqual(resp.status_code, 503)
self.assertEqual(resp.reason_phrase, "Service Unavailable")
def test_reason_phrase(self):
reason = "I'm an anarchist coffee pot on crack."