Skip to content

Commit

Permalink
More flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
skef committed Mar 29, 2023
1 parent f935c75 commit 559b9c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/otfautohint_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def test_print_fddict():
'--print-dflt-fddict',
'--fontinfo-file',
fipath])
str(wrapped_exc) == expected
assert str(wrapped_exc) == expected


@pytest.mark.parametrize("option", [
Expand Down Expand Up @@ -544,13 +544,13 @@ def test_sparse_mmotf():


def test_cff():
path = get_input_path("dummy/font.cff")
cff = get_input_path("dummy/font.cff")
out_path = get_temp_file_path()
options = OTFOptions(path, out_path)
options = OTFOptions(cff, out_path)
hintFiles(options)

xmlFiles = []
for path in (path, out_path):
for path in (cff, out_path):
font = CFFFontSet()
opath = get_temp_file_path()
writer = XMLWriter(opath)
Expand Down

0 comments on commit 559b9c8

Please sign in to comment.