aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/tests/status.py
diff options
context:
space:
mode:
authorTom Christie2012-01-21 17:55:25 +0000
committerTom Christie2012-01-21 17:55:25 +0000
commitc94423151b5e135c5d977d63a7092cc4a8ab5de4 (patch)
tree896f6a8e9ae8309d9ec3400573967134077e63f8 /djangorestframework/tests/status.py
parenta99a449c8844e6f55f9a1ecb341701f2719117df (diff)
downloaddjango-rest-framework-c94423151b5e135c5d977d63a7092cc4a8ab5de4.tar.bz2
Drop short status codes.
Diffstat (limited to 'djangorestframework/tests/status.py')
-rw-r--r--djangorestframework/tests/status.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/djangorestframework/tests/status.py b/djangorestframework/tests/status.py
index 04aed740..53ecae11 100644
--- a/djangorestframework/tests/status.py
+++ b/djangorestframework/tests/status.py
@@ -8,9 +8,5 @@ class TestStatus(TestCase):
def test_status(self):
"""Ensure the status module is present and correct."""
- self.assertEquals(200, status.OK)
self.assertEquals(200, status.HTTP_200_OK)
-
- self.assertEquals(404, status.NOT_FOUND)
self.assertEquals(404, status.HTTP_404_NOT_FOUND)
-