diff --git a/tests/schemas/test_openapi.py b/tests/schemas/test_openapi.py index b949efcc8..abf2b5ebc 100644 --- a/tests/schemas/test_openapi.py +++ b/tests/schemas/test_openapi.py @@ -211,7 +211,7 @@ class TestOperationIntrospection(TestCase): path = '/' method = 'GET' view = create_view( - views.ExampleValdidatedAPIView, + views.ExampleValidatedAPIView, method, create_request(path), ) diff --git a/tests/schemas/views.py b/tests/schemas/views.py index 7a920f33e..273f1d30a 100644 --- a/tests/schemas/views.py +++ b/tests/schemas/views.py @@ -96,7 +96,7 @@ class ExampleValidatedSerializer(serializers.Serializer): ip = serializers.IPAddressField() -class ExampleValdidatedAPIView(generics.GenericAPIView): +class ExampleValidatedAPIView(generics.GenericAPIView): serializer_class = ExampleValidatedSerializer def get(self, *args, **kwargs):