diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/responses/tests.py | 6 |
1 files changed, 3 insertions, 3 deletions
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." |
