Skip to content

Commit

Permalink
Suppress copyright check in new UFO tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Skef Iterum authored and skef committed Jan 4, 2023
1 parent 3d74655 commit feebd77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/tx_test.py
Expand Up @@ -1251,7 +1251,7 @@ def test_ufo_fontinfo_parsing(file, msg, ret_code):
if (ret_code == 0):
expected_path = generate_ps_dump(expected_path)
output_path = generate_ps_dump(output_path)
assert differ([expected_path, output_path])
assert differ([expected_path, output_path, '-s'] + PFA_SKIP)
else:
arg = [TOOL, '-t1', '-f', ufo_input_path]
assert subprocess.call(arg) == ret_code
Expand Down Expand Up @@ -1396,7 +1396,7 @@ def test_ufo_contentsplist_parsing(file, msg, ret_code):
if (ret_code == 0):
expected_path = generate_ps_dump(expected_path)
output_path = generate_ps_dump(output_path)
assert differ([expected_path, output_path])
assert differ([expected_path, output_path, '-s'] + PFA_SKIP)
else:
arg = [TOOL, '-t1', '-f', ufo_input_path]
assert subprocess.call(arg) == ret_code
Expand Down Expand Up @@ -1451,7 +1451,7 @@ def test_ufo_glifs_parsing(file, msg, ret_code):
if (ret_code == 0):
expected_path = generate_ps_dump(expected_path)
output_path = generate_ps_dump(output_path)
assert differ([expected_path, output_path])
assert differ([expected_path, output_path, '-s'] + PFA_SKIP)
else:
arg = [TOOL, '-t1', '-f', ufo_input_path]
assert subprocess.call(arg) == ret_code
Expand Down

0 comments on commit feebd77

Please sign in to comment.