Skip to content

Commit

Permalink
reblack with different version
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rc1e committed Jul 1, 2024
1 parent 8a5c25c commit d9ec5b4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tests/checks/googlefonts_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4082,9 +4082,9 @@ def test_check_gf_axisregistry_valid_tags():
assert_PASS(check(font))

md = Font(font).family_metadata
md.axes[0].tag = (
"crap" # I'm pretty sure this one wont ever be included in the registry
)
md.axes[
0
].tag = "crap" # I'm pretty sure this one wont ever be included in the registry
assert_results_contain(
check(MockFont(file=font, family_metadata=md)), FAIL, "bad-axis-tag"
)
Expand Down Expand Up @@ -4149,7 +4149,9 @@ def test_check_metadata_consistent_axis_enumeration():
assert_PASS(check(font))

md = Font(font).family_metadata
md.axes[1].tag = (
md.axes[
1
].tag = (
"wdth" # this effectively removes the "wght" axis while not adding an extra one
)
assert_results_contain(
Expand Down

0 comments on commit d9ec5b4

Please sign in to comment.