Browse Source

🐛 Fix issue with Swagger theme change example in the official tutorial (#13289)

pull/13390/head
Hyogeun Oh (오효근) 1 month ago
committed by GitHub
parent
commit
e157cf4b96
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs_src/configure_swagger_ui/tutorial002.py
  2. 2
      tests/test_tutorial/test_configure_swagger_ui/test_tutorial002.py

2
docs_src/configure_swagger_ui/tutorial002.py

@ -1,6 +1,6 @@
from fastapi import FastAPI
app = FastAPI(swagger_ui_parameters={"syntaxHighlight.theme": "obsidian"})
app = FastAPI(swagger_ui_parameters={"syntaxHighlight": {"theme": "obsidian"}})
@app.get("/users/{username}")

2
tests/test_tutorial/test_configure_swagger_ui/test_tutorial002.py

@ -12,7 +12,7 @@ def test_swagger_ui():
'"syntaxHighlight": false' not in response.text
), "not used parameters should not be included"
assert (
'"syntaxHighlight.theme": "obsidian"' in response.text
'"syntaxHighlight": {"theme": "obsidian"}' in response.text
), "parameters with middle dots should be included in a JSON compatible way"
assert (
'"dom_id": "#swagger-ui"' in response.text

Loading…
Cancel
Save