Commit 6bbedfd7 by Oscar Vilaplana

fixed merge conflict

parents e80488b6 31893cff
...@@ -846,7 +846,7 @@ class HumanizedFieldType(TestCase): ...@@ -846,7 +846,7 @@ class HumanizedFieldType(TestCase):
""" """
self.assertIsInstance(humanized, unicode) self.assertIsInstance(humanized, unicode)
self.assertTrue(humanized) self.assertNotEqual(humanized, '')
class HumanizedField(TestCase): class HumanizedField(TestCase):
......
...@@ -11,7 +11,6 @@ from rest_framework.response import Response ...@@ -11,7 +11,6 @@ from rest_framework.response import Response
from rest_framework.settings import api_settings from rest_framework.settings import api_settings
from rest_framework.views import APIView from rest_framework.views import APIView
factory = RequestFactory() factory = RequestFactory()
...@@ -102,4 +101,3 @@ class FunctionBasedViewIntegrationTests(TestCase): ...@@ -102,4 +101,3 @@ class FunctionBasedViewIntegrationTests(TestCase):
} }
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
self.assertEqual(sanitise_json_error(response.data), expected) self.assertEqual(sanitise_json_error(response.data), expected)
...@@ -68,9 +68,9 @@ class APIView(View): ...@@ -68,9 +68,9 @@ class APIView(View):
return content return content
def _generate_action_metadata(self, request): def _generate_action_metadata(self, request):
''' """
Helper for generating the fields metadata for allowed and permitted methods. Helper for generating the fields metadata for allowed and permitted methods.
''' """
actions = {} actions = {}
for method in self.allowed_methods: for method in self.allowed_methods:
# skip HEAD and OPTIONS # skip HEAD and OPTIONS
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment