Skip to content

Commit

Permalink
Make test_imaging_stretch.py runnable as a standalone script
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Nov 6, 2014
1 parent 8805212 commit 1f8a627
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Tests/test_imaging_stretch.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,8 @@ def test_enlarge_filters(self):
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

0 comments on commit 1f8a627

Please sign in to comment.