We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b66d1b commit 659375fCopy full SHA for 659375f
tests/schemas/test_openapi.py
@@ -225,7 +225,7 @@ def test_serializer_validators(self):
225
path = '/'
226
method = 'GET'
227
view = create_view(
228
- views.ExampleValdidatedAPIView,
+ views.ExampleValidatedAPIView,
229
method,
230
create_request(path),
231
)
tests/schemas/views.py
@@ -96,7 +96,7 @@ class ExampleValidatedSerializer(serializers.Serializer):
96
ip = serializers.IPAddressField()
97
98
99
-class ExampleValdidatedAPIView(generics.GenericAPIView):
+class ExampleValidatedAPIView(generics.GenericAPIView):
100
serializer_class = ExampleValidatedSerializer
101
102
def get(self, *args, **kwargs):
0 commit comments