diff options
Diffstat (limited to 'djangorestframework/tests/throttling.py')
| -rw-r--r-- | djangorestframework/tests/throttling.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/djangorestframework/tests/throttling.py b/djangorestframework/tests/throttling.py index ad22d2d2..a8e446e8 100644 --- a/djangorestframework/tests/throttling.py +++ b/djangorestframework/tests/throttling.py @@ -7,12 +7,12 @@ from django.contrib.auth.models import User from django.core.cache import cache from djangorestframework.compat import RequestFactory -from djangorestframework.views import View +from djangorestframework.views import APIView from djangorestframework.permissions import PerUserThrottling, PerViewThrottling from djangorestframework.response import Response -class MockView(View): +class MockView(APIView): permission_classes = (PerUserThrottling,) throttle = '3/sec' |
