Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Jul 21, 2024
1 parent ae07979 commit 627f333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def test_saveImage_multipage(tmpdir, script, imageType, expectedFilenames):
assert expectedFilenames == [p.name for p in sorted(tmpdir.glob(glob_pattern))]


@pytest.mark.skipif(sys.platform == ""darwin"", reason="currently broken on macOS")
@pytest.mark.skipif(sys.platform == "darwin", reason="currently broken on macOS")
def test_saveImage_mp4_codec(tmpdir):
from drawbot_skia import ffmpeg

Expand Down

0 comments on commit 627f333

Please sign in to comment.