Merge pull request #992 from hugovk/testimagingstretch

Make test_imaging_stretch.py runnable as a standalone script
This commit is contained in:
wiredfool 2014-11-06 21:42:47 -08:00
commit 9dfa515637

View File

@ -38,3 +38,9 @@ class TestImagingStretch(PillowTestCase):
r = im.im.stretch((764, 414), f)
self.assertEqual(r.mode, "RGB")
self.assertEqual(r.size, (764, 414))
if __name__ == '__main__':
unittest.main()
# End of file