Skip to content

Commit

Permalink
Fixed lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
heuer committed Feb 7, 2024
1 parent 7fc8be3 commit e563179
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_encode_decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ def test_encode_decode(content, mode):
assert content == decode(qr)


@pytest.mark.skipif(IS_MUSL, reason="zbar does not support latin1 with musl") # See <https://github.com/heuer/segno/issues/134>
def test_encode_decode_latin1():
@pytest.mark.skipif(IS_MUSL, reason="zbar does not support latin1 with musl")
def test_encode_decode_latin1(): # See <https://github.com/heuer/segno/issues/134>
content = 'Märchenbücher'
qr = segno.make_qr(content)
assert 'byte' == qr.mode
Expand Down Expand Up @@ -80,6 +80,5 @@ def test_pyqrcode_issue76():
assert content == decode(qr)



if __name__ == '__main__':
pytest.main([__file__])

0 comments on commit e563179

Please sign in to comment.