Skip to content

Commit 2711511

Browse files
committed
Fix new ruff rule PT006
1 parent 8e00f4f commit 2711511

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/unit/test_output.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
from pathlib import Path
1616

1717

18-
@pytest.mark.parametrize(argnames="width, expected", argvalues=((79, 79), (131, 81), (133, 132)))
18+
@pytest.mark.parametrize(
19+
argnames=("width", "expected"),
20+
argvalues=((79, 79), (131, 81), (133, 132)),
21+
)
1922
def test_console_width(width: int, expected: int, monkeypatch: pytest.MonkeyPatch) -> None:
2023
"""Test the console width function."""
2124

0 commit comments

Comments
 (0)