Skip to content

Commit

Permalink
Use pytest.param for consistency
Browse files Browse the repository at this point in the history
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
  • Loading branch information
nulano and hugovk committed Aug 29, 2022
1 parent aa5d67e commit 0ec3d3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/test_imagefont.py
Expand Up @@ -35,7 +35,7 @@ def test_sanity():
@pytest.fixture(
scope="module",
params=[
ImageFont.Layout.BASIC,
pytest.param(ImageFont.Layout.BASIC),
pytest.param(ImageFont.Layout.RAQM, marks=skip_unless_feature("raqm")),
],
)
Expand Down

0 comments on commit 0ec3d3e

Please sign in to comment.