diff --git a/harfbuzz b/harfbuzz index 4584bcd..e60ec9d 160000 --- a/harfbuzz +++ b/harfbuzz @@ -1 +1 @@ -Subproject commit 4584bcdc326564829d3cee3572386c90e4fd1974 +Subproject commit e60ec9dcd3b0f94d13b8baf7ba12cd6cf0626064 diff --git a/tests/test_uharfbuzz.py b/tests/test_uharfbuzz.py index f9c77b1..ad56956 100644 --- a/tests/test_uharfbuzz.py +++ b/tests/test_uharfbuzz.py @@ -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] @@ -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]