Skip to content

Commit d4d5fd4

Browse files
sethmlarsonwebknjaz
authored andcommitted
Change to tuples for pytest parametrize
1 parent 8e6dd76 commit d4d5fd4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_writer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,8 @@ def test_write_format_controls(writer):
302302

303303

304304
@pytest.mark.parametrize(
305-
["no_binary", "only_binary", "expected_lines"],
306-
[
305+
("no_binary", "only_binary", "expected_lines"),
306+
(
307307
(
308308
[":all:"],
309309
["django"],
@@ -320,7 +320,7 @@ def test_write_format_controls(writer):
320320
"--no-binary django",
321321
],
322322
),
323-
],
323+
),
324324
)
325325
def test_write_format_controls_all(writer, no_binary, only_binary, expected_lines):
326326
"""

0 commit comments

Comments
 (0)