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 5638653 commit 4677d54Copy full SHA for 4677d54
tests/schemas/test_openapi.py
@@ -211,7 +211,7 @@ def test_serializer_validators(self):
211
path = '/'
212
method = 'GET'
213
view = create_view(
214
- views.ExampleValdidatedAPIView,
+ views.ExampleValidatedAPIView,
215
method,
216
create_request(path),
217
)
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