Skip to content

Commit

Permalink
Change to tuples for pytest parametrize
Browse files Browse the repository at this point in the history
  • Loading branch information
sethmlarson committed Apr 30, 2024
1 parent 0be8c4d commit 72cbcea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,8 @@ def test_write_format_controls(writer):


@pytest.mark.parametrize(
["no_binary", "only_binary", "expected_lines"],
[
("no_binary", "only_binary", "expected_lines"),
(
(
[":all:"],
["django"],
Expand All @@ -320,7 +320,7 @@ def test_write_format_controls(writer):
"--no-binary django",
],
),
],
),
)
def test_write_format_controls_all(writer, no_binary, only_binary, expected_lines):
"""
Expand Down

0 comments on commit 72cbcea

Please sign in to comment.