From 1de6fc107e7c23a36011eeef6cd835a5c9e14d5d Mon Sep 17 00:00:00 2001 From: "pre-commit-ci-lite[bot]" <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Date: Thu, 8 Jan 2026 11:30:55 +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 --- .../test_query_params_str_validations/test_tutorial006c.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_tutorial/test_query_params_str_validations/test_tutorial006c.py b/tests/test_tutorial/test_query_params_str_validations/test_tutorial006c.py index af1d74315b..f7ae011b0a 100644 --- a/tests/test_tutorial/test_query_params_str_validations/test_tutorial006c.py +++ b/tests/test_tutorial/test_query_params_str_validations/test_tutorial006c.py @@ -37,7 +37,9 @@ def test_query_params_str_validations_no_query(client: TestClient): @pytest.mark.parametrize("q_value", ["None", "null", ""]) -def test_query_params_str_validations_send_explicit_none(client: TestClient, q_value: str): +def test_query_params_str_validations_send_explicit_none( + client: TestClient, q_value: str +): response = client.get("/items/", params={"q": q_value}) assert response.status_code == 200 assert response.json() == {