From 9ab061ac9aed5c722cd630d3eff21dc0e778ad6b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 6 Mar 2024 16:14:31 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../test_offline_docs/test_root_path_with_static_mount.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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)