Enabled ImageGrab.grab test on AppVeyor

This commit is contained in:
Andrew Murray 2018-10-22 18:39:07 +11:00
parent 94925c5057
commit 467d2089be

View File

@ -1,4 +1,4 @@
from helper import unittest, PillowTestCase, on_appveyor
from helper import unittest, PillowTestCase
import sys
@ -7,7 +7,6 @@ try:
class TestImageGrab(PillowTestCase):
@unittest.skipIf(on_appveyor(), "Test fails on appveyor")
def test_grab(self):
im = ImageGrab.grab()
self.assert_image(im, im.mode, im.size)