From 871d20795b3c357c00ca169e5be439d095c7db24 Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Thu, 18 Dec 2025 22:16:55 +0100 Subject: [PATCH] Remove redundand `needs_py39` in test --- .../test_query_params_str_validations/test_tutorial006.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_tutorial/test_query_params_str_validations/test_tutorial006.py b/tests/test_tutorial/test_query_params_str_validations/test_tutorial006.py index 2a9b1487e..1314f3689 100644 --- a/tests/test_tutorial/test_query_params_str_validations/test_tutorial006.py +++ b/tests/test_tutorial/test_query_params_str_validations/test_tutorial006.py @@ -3,7 +3,7 @@ import importlib import pytest from fastapi.testclient import TestClient -from ...utils import needs_py39, needs_pydanticv2 +from ...utils import needs_pydanticv2 skip_for_pydantic_v1 = needs_pydanticv2 @@ -12,7 +12,7 @@ skip_for_pydantic_v1 = needs_pydanticv2 name="client", params=[ pytest.param("tutorial006_py39"), - pytest.param("tutorial006_an_py39", marks=needs_py39), + pytest.param("tutorial006_an_py39"), ], ) def get_client(request: pytest.FixtureRequest):