Skip to content

Commit

Permalink
Update to HarfBuzz 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
behdad authored and khaledhosny committed Jul 9, 2023
1 parent c07dd88 commit 6bce43b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion harfbuzz
Submodule harfbuzz updated 224 files
12 changes: 6 additions & 6 deletions tests/test_uharfbuzz.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,21 +505,21 @@ def message(msg):
pos = [g.x_advance for g in buf.glyph_positions]
assert pos == [0, 0, 0, 100, 0]
expected_messages = [
'start table GSUB',
"start table GSUB script tag 'DFLT'",
"start lookup 0 feature 'calt'",
'recursing to lookup 1 at 2',
'replacing glyph at 2 (single substitution)',
'replaced glyph at 2 (single substitution)',
'recursed to lookup 1',
"end lookup 0 feature 'calt'",
'end table GSUB',
'start table GPOS',
"end table GSUB script tag 'DFLT'",
"start table GPOS script tag 'DFLT'",
"start lookup 0 feature 'kern'",
'try kerning glyphs at 3,4',
'kerned glyphs at 3,4',
'tried kerning glyphs at 3,4',
"end lookup 0 feature 'kern'",
'end table GPOS',
"end table GPOS script tag 'DFLT'",
]
assert messages == expected_messages
gids_trace = [[g.codepoint for g in infos] for infos in infos_trace]
Expand Down Expand Up @@ -559,8 +559,8 @@ def message(msg):
pos = [g.x_advance for g in buf.glyph_positions]
assert pos == [0, 0, 0, 0, 0]
expected_messages = [
'start table GSUB',
'start table GPOS',
"start table GSUB script tag 'DFLT'",
"start table GPOS script tag 'DFLT'",
]
assert messages == expected_messages
gids_trace = [[g.codepoint for g in infos] for infos in infos_trace]
Expand Down

0 comments on commit 6bce43b

Please sign in to comment.