From 467d2089becef82497de747ec21846d30d9dc965 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Mon, 22 Oct 2018 18:39:07 +1100 Subject: [PATCH] Enabled ImageGrab.grab test on AppVeyor --- Tests/test_imagegrab.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Tests/test_imagegrab.py b/Tests/test_imagegrab.py index 87a6956f6..24521ef20 100644 --- a/Tests/test_imagegrab.py +++ b/Tests/test_imagegrab.py @@ -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)