aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/tests/authentication.py
diff options
context:
space:
mode:
Diffstat (limited to 'djangorestframework/tests/authentication.py')
-rw-r--r--djangorestframework/tests/authentication.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/djangorestframework/tests/authentication.py b/djangorestframework/tests/authentication.py
index 24c59488..79194718 100644
--- a/djangorestframework/tests/authentication.py
+++ b/djangorestframework/tests/authentication.py
@@ -5,13 +5,13 @@ from django.test import Client, TestCase
from django.utils import simplejson as json
from django.http import HttpResponse
-from djangorestframework.views import View
+from djangorestframework.views import APIView
from djangorestframework import permissions
import base64
-class MockView(View):
+class MockView(APIView):
permission_classes = (permissions.IsAuthenticated,)
def post(self, request):