aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/tests/status.py
diff options
context:
space:
mode:
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)
-