Skip to content

Commit 86eebd7

Browse files
committed
text_BooleanGlyph: fix str/unicode issue in py27
1 parent ff81385 commit 86eebd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_BooleanGlyph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def _addGlyphTests():
7272
shouldPerformTest, testMethod = testMaker(glyph, booleanMethod)
7373
if shouldPerformTest:
7474
testMethodName = "test_%s_%s" % (glyph.name, booleanMethod)
75-
testMethod.__name__ = testMethodName
75+
testMethod.__name__ = str(testMethodName)
7676
setattr(BooleanTests, testMethodName, testMethod)
7777

7878

0 commit comments

Comments
 (0)