mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-24 16:24:11 +03:00
Fixed block comments
This commit is contained in:
parent
cbc056f43d
commit
37f5f1120a
|
@ -76,7 +76,7 @@ class TestFileEps(PillowTestCase):
|
|||
plot_image = Image.open("Tests/images/reqd_showpage.eps")
|
||||
target = Image.open("Tests/images/reqd_showpage.png")
|
||||
|
||||
#should not crash/hang
|
||||
# should not crash/hang
|
||||
plot_image.load()
|
||||
# fonts could be slightly different
|
||||
self.assert_image_similar(plot_image, target, 6)
|
||||
|
|
|
@ -20,7 +20,7 @@ class TestFontPcf(PillowTestCase):
|
|||
with open(fontname, "rb") as test_file:
|
||||
font = PcfFontFile.PcfFontFile(test_file)
|
||||
self.assertIsInstance(font, FontFile.FontFile)
|
||||
#check the number of characters in the font
|
||||
# check the number of characters in the font
|
||||
self.assertEqual(len([_f for _f in font.glyph if _f]), 223)
|
||||
|
||||
tempname = self.tempfile("temp.pil")
|
||||
|
|
Loading…
Reference in New Issue
Block a user