Skip to content

Commit

Permalink
fix flake8 complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
frankrolf committed Dec 4, 2024
1 parent 39d23c3 commit 341c4fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/ufotools_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def test_cleanUpGLIFFiles_extraneous_glyph(capsys):
assert changed == 1

out, err = capsys.readouterr()
assert f'Removing glif file x.glif' in out
assert 'Removing glif file x.glif' in out


def test_cleanUpGLIFFiles_other_layer(capsys):
Expand Down Expand Up @@ -163,8 +163,8 @@ def test_validateLayers_empty_folder(capsys):
temp_dir = Path(get_temp_dir_path())
tmp_ufo_path = temp_dir / ufo_path.name
copytree(ufo_path, tmp_ufo_path)
processed_glyphs_dir = tmp_ufo_path / 'glyphs.com.adobe.type.processedglyphs'
processed_glyphs_dir.mkdir()
processed_dir = tmp_ufo_path / 'glyphs.com.adobe.type.processedglyphs'
processed_dir.mkdir()

ut.validateLayers(tmp_ufo_path)
out, err = capsys.readouterr()
Expand Down

0 comments on commit 341c4fd

Please sign in to comment.