Skip to content

Commit

Permalink
add missing whitespace for linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Perrin Samuels committed May 31, 2024
1 parent b2c8237 commit 9da3850
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,11 +303,11 @@ class XView(generics.CreateAPIView):
operation = schema['paths']['/e']['post']
assert operation['requestBody']['content']['application/json'] == {
'schema': {'type': 'array', 'items': {'$ref': '#/components/schemas/A'}},
'examples': {'Ex': {'value': [{'id': '2345'},{'id': '2345'}]}}
'examples': {'Ex': {'value': [{'id': '2345'}, {'id': '2345'}]}}
}
assert operation['responses']['201']['content']['application/json'] == {
'schema': {'type': 'array', 'items': {'$ref': '#/components/schemas/A'}},
'examples': {'Ex': {'value': [{'id': '2345'},{'id': '2345'}]}}
'examples': {'Ex': {'value': [{'id': '2345'}, {'id': '2345'}]}}
}


Expand Down

0 comments on commit 9da3850

Please sign in to comment.