From 5a639b7b0df44d3fd71001cac28c0f844d572560 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci-lite[bot]" <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Date: Fri, 13 Feb 2026 16:01:36 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Auto=20format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_tutorial/test_body/test_tutorial005.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_tutorial/test_body/test_tutorial005.py b/tests/test_tutorial/test_body/test_tutorial005.py index 8e12c0462..e0900a14a 100644 --- a/tests/test_tutorial/test_body/test_tutorial005.py +++ b/tests/test_tutorial/test_body/test_tutorial005.py @@ -4,14 +4,12 @@ import pytest from fastapi.testclient import TestClient - @pytest.fixture( name="client", params=[ pytest.param("tutorial005_py310"), ], ) - def get_client(request: pytest.FixtureRequest): mod = importlib.import_module(f"docs_src.body.{request.param}") client = TestClient(mod.app) @@ -28,4 +26,3 @@ def test_required_field_missing(client: TestClient): response = client.post("/items/", json={}) assert response.status_code == 200 assert response.json() == {"description": None} -