diff --git a/tests/test_offline_docs/test_root_path_with_static_mount.py b/tests/test_offline_docs/test_root_path_with_static_mount.py index 0aa096910..132180f3c 100644 --- a/tests/test_offline_docs/test_root_path_with_static_mount.py +++ b/tests/test_offline_docs/test_root_path_with_static_mount.py @@ -1,6 +1,6 @@ from fastapi import FastAPI -from fastapi.staticfiles import StaticFiles from fastapi.openapi.docs import get_swagger_ui_html +from fastapi.staticfiles import StaticFiles from fastapi.testclient import TestClient root_path = "/api" @@ -12,7 +12,10 @@ app = FastAPI( redoc_url=None, ) -app.mount("/static", StaticFiles(directory="tests/test_offline_docs/static"), name="static") +app.mount( + "/static", StaticFiles(directory="tests/test_offline_docs/static"), name="static" +) + @app.get("/") async def custom_swagger_ui_html(): @@ -27,6 +30,7 @@ async def custom_swagger_ui_html(): swagger_css_url="/static/swagger.css", ) + client = TestClient(app)