mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-07-13 09:42:20 +03:00
added explanation
This commit is contained in:
parent
0347bcc91d
commit
87d5c8a506
|
@ -7,12 +7,12 @@ try:
|
||||||
|
|
||||||
class TestImageGrab(PillowTestCase):
|
class TestImageGrab(PillowTestCase):
|
||||||
|
|
||||||
@unittest.skipIf(onAppveyor())
|
@unittest.skipIf(onAppveyor(), "Test fails on appveyor")
|
||||||
def test_grab(self):
|
def test_grab(self):
|
||||||
im = ImageGrab.grab()
|
im = ImageGrab.grab()
|
||||||
self.assert_image(im, im.mode, im.size)
|
self.assert_image(im, im.mode, im.size)
|
||||||
|
|
||||||
@unittest.skipIf(onAppveyor())
|
@unittest.skipIf(onAppveyor(), "Test fails on appveyor")
|
||||||
def test_grab2(self):
|
def test_grab2(self):
|
||||||
im = ImageGrab.grab()
|
im = ImageGrab.grab()
|
||||||
self.assert_image(im, im.mode, im.size)
|
self.assert_image(im, im.mode, im.size)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user