Skip to content

Commit

Permalink
add image test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
nulano committed Oct 12, 2019
1 parent f60ce1a commit 165d457
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Tests/test_000_sanity.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,8 @@ def test_sanity(self):
PIL.Image.new("RGB", (100, 100))
PIL.Image.new("I", (100, 100))
PIL.Image.new("F", (100, 100))

def test_fail(self):
self.assert_image_equal(
PIL.Image.new("L", (10, 10), 100), PIL.Image.new("L", (10, 10), 200)
)

0 comments on commit 165d457

Please sign in to comment.