From e4917eac00c57e56deb726bc0e78a9e6935112f5 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 12:40:28 +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 --- tests/test_tutorial/test_query_params/test_tutorial007_py310.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_tutorial/test_query_params/test_tutorial007_py310.py b/tests/test_tutorial/test_query_params/test_tutorial007_py310.py index 7728b8bcc..fe9827c8c 100644 --- a/tests/test_tutorial/test_query_params/test_tutorial007_py310.py +++ b/tests/test_tutorial/test_query_params/test_tutorial007_py310.py @@ -11,6 +11,7 @@ def get_client(): c = TestClient(app) return c + @needs_py310 def test_foo_needy_very(client: TestClient): response = client.get("/query/mixed-type-params?query=1&query=2&foo=bar&foo=baz") @@ -22,6 +23,7 @@ def test_foo_needy_very(client: TestClient): "sequence_mapping_int": {"foo": []}, } + @needs_py310 def test_just_string_not_scalar_mapping(client: TestClient): response = client.get("/query/mixed-type-params?&query=2&foo=1&bar=3&foo=2&foo=baz")