Fixed block comments

This commit is contained in:
Andrew Murray 2018-04-10 23:00:33 +10:00
parent cbc056f43d
commit 37f5f1120a
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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")