aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/tests/request.py
diff options
context:
space:
mode:
authorTom Christie2012-09-03 16:54:17 +0100
committerTom Christie2012-09-03 16:54:17 +0100
commita092a72844705e3129b8996b81d8424997b5d37f (patch)
tree2f9cf30fc805a4b8cf4e6d60b3f820a3e96347e3 /djangorestframework/tests/request.py
parent1a1ccf94c2c0cadee8b0bd1c8f85c591c650d763 (diff)
downloaddjango-rest-framework-a092a72844705e3129b8996b81d8424997b5d37f.tar.bz2
View -> APIView
Diffstat (limited to 'djangorestframework/tests/request.py')
-rw-r--r--djangorestframework/tests/request.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/djangorestframework/tests/request.py b/djangorestframework/tests/request.py
index 1d74ea32..7ad99c07 100644
--- a/djangorestframework/tests/request.py
+++ b/djangorestframework/tests/request.py
@@ -15,7 +15,7 @@ from djangorestframework.parsers import (
)
from djangorestframework.request import Request
from djangorestframework.response import Response
-from djangorestframework.views import View
+from djangorestframework.views import APIView
factory = RequestFactory()
@@ -207,7 +207,7 @@ class TestContentParsing(TestCase):
# self.assertEqual(request.DATA.items(), data.items())
-class MockView(View):
+class MockView(APIView):
authentication = (UserLoggedInAuthentication,)
def post(self, request):