Skip to content

Commit 913871e

Browse files
Apply ruff/flake8-pytest-style rule PT006
PT006 Wrong type passed to first argument of `pytest.mark.parametrize`; expected `tuple`
1 parent b782f25 commit 913871e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codespell_lib/tests/test_dictionary.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
for d in _builtin_dictionaries
4848
]
4949
fname_params = pytest.mark.parametrize(
50-
"fname, in_aspell, in_dictionary", _fnames_in_aspell
50+
("fname", "in_aspell", "in_dictionary"), _fnames_in_aspell
5151
)
5252

5353

0 commit comments

Comments
 (0)