diff --git a/src/_pytest/fixtures.py b/src/_pytest/fixtures.py index ed7e715de..7dc919235 100644 --- a/src/_pytest/fixtures.py +++ b/src/_pytest/fixtures.py @@ -1113,7 +1113,7 @@ def fixture( ``fixture_`` and then use ``@pytest.fixture(name='')``. """ - if params is not None and not isinstance(params, (list, tuple)): + if params is not None: params = list(params) fixture_function, arguments = _parse_fixture_args(