From 24b2bc635e23e4235f51095fbe099beec27a65c8 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Tue, 13 Jan 2015 11:29:07 -0800 Subject: Fixed #24137 -- Switched to HTTP reason phrases from Python stdlib. --- tests/responses/tests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/responses/tests.py b/tests/responses/tests.py index 892c09b857..bf7a0e12ef 100644 --- a/tests/responses/tests.py +++ b/tests/responses/tests.py @@ -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." -- cgit v1.3