From 8402aefc707f2314c0f9549035a1ae178540a0cf Mon Sep 17 00:00:00 2001 From: "d.kovalenko" Date: Tue, 24 Feb 2026 10:50:52 +0300 Subject: [PATCH] fix: TestSet001__Common.optionName is fixed (equest: pytest.fixture) --- .../Options/STD/generic/bool_option/test_set001__common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/implementation/v00/configuration_std/Options/STD/generic/bool_option/test_set001__common.py b/tests/implementation/v00/configuration_std/Options/STD/generic/bool_option/test_set001__common.py index 2fa7ec1..c90e1f9 100644 --- a/tests/implementation/v00/configuration_std/Options/STD/generic/bool_option/test_set001__common.py +++ b/tests/implementation/v00/configuration_std/Options/STD/generic/bool_option/test_set001__common.py @@ -30,7 +30,7 @@ class TestSet001__Common: # -------------------------------------------------------------------- @pytest.fixture(params=sm_OptionNames, ids=[x for x in sm_OptionNames]) - def optionName(self, request: pytest.fixture) -> str: + def optionName(self, request: pytest.FixtureRequest) -> str: assert isinstance(request, pytest.FixtureRequest) assert type(request.param) is str return request.param