8000 🎨 Format OpenAPI JSON in `test_starlette_exception.py` by iudeen · Pull Request #5379 · fastapi/fastapi · GitHub
[go: up one dir, main page]

Skip to content
6 changes: 3 additions & 3 deletions tests/test_starlette_exception.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ async def read_starlette_item(item_id: str):
"responses": {
"200": {
"content": {"application/json": {"schema": {}}},
"description": "Successful " "Response",
"description": "Successful Response",
}
},
"summary": "No Body " "Status " "Code " "Exception",
"summary": "No Body Status Code Exception",
}
},
"/http-no-body-statuscode-with-detail-exception": {
Expand All @@ -59,7 +59,7 @@ async def read_starlette_item(item_id: str):
"responses": {
"200": {
"content": {"application/json": {"schema": {}}},
"description": "Successful " "Response",
"description": "Successful Response",
}
},
"summary": "No Body Status Code With Detail Exception",
Expand Down
0