From b4cd1f2893b9cc018e67050cd39fd0413886f59e Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 24 Aug 2022 19:39:19 +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_tutorial/test_extending_openapi/test_tutorial006.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_tutorial/test_extending_openapi/test_tutorial006.py b/tests/test_tutorial/test_extending_openapi/test_tutorial006.py index c21406afd..3671b1543 100644 --- a/tests/test_tutorial/test_extending_openapi/test_tutorial006.py +++ b/tests/test_tutorial/test_extending_openapi/test_tutorial006.py @@ -11,11 +11,9 @@ def test_swagger_ui(): assert 'router="history"' in response.text assert 'layout="sidebar"' in response.text assert 'tryItCredentialPolicy="omit"' in response.text - + def test_get_users(): response = client.get("/users/foo") assert response.status_code == 200, response.text assert response.json() == {"message": "Hello foo"} - -