We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6f44c3 commit dcabafcCopy full SHA for dcabafc
1 file changed
tests/main_test.py
@@ -62,7 +62,7 @@ def test_parser_main(capsys):
62
and for the round-trip of GlyphsUnitTestSans.glyphs.
63
"""
64
filename = os.path.join(DATA, "GlyphsUnitTestSans.glyphs")
65
- with open(filename) as f:
+ with open(filename, encoding="utf-8") as f:
66
expected = f.read()
67
68
glyphsLib.parser.main([filename])
@@ -75,7 +75,7 @@ def test_parser_main_v3(capsys):
75
76
77
filename = os.path.join(DATA, "GlyphsUnitTestSans3.glyphs")
78
79
80
81
0 commit comments