aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests
diff options
context:
space:
mode:
Diffstat (limited to 'rest_framework/tests')
-rw-r--r--rest_framework/tests/fields.py2
-rw-r--r--rest_framework/tests/views.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/rest_framework/tests/fields.py b/rest_framework/tests/fields.py
index 3882b53f..13df769f 100644
--- a/rest_framework/tests/fields.py
+++ b/rest_framework/tests/fields.py
@@ -846,7 +846,7 @@ class HumanizedFieldType(TestCase):
"""
self.assertIsInstance(humanized, unicode)
- self.assertTrue(humanized)
+ self.assertNotEqual(humanized, '')
class HumanizedField(TestCase):
diff --git a/rest_framework/tests/views.py b/rest_framework/tests/views.py
index c0f42a06..2767d24c 100644
--- a/rest_framework/tests/views.py
+++ b/rest_framework/tests/views.py
@@ -11,7 +11,6 @@ from rest_framework.response import Response
from rest_framework.settings import api_settings
from rest_framework.views import APIView
-
factory = RequestFactory()
@@ -102,4 +101,3 @@ class FunctionBasedViewIntegrationTests(TestCase):
}
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
self.assertEqual(sanitise_json_error(response.data), expected)
-