Fix py3 test

This commit is contained in:
Ross Lawley 2013-05-23 19:44:05 +00:00
parent b4a98a4000
commit c5ce96c391

View File

@ -409,6 +409,9 @@ class FileTest(unittest.TestCase):
def test_get_image_by_grid_id(self):
if PY3:
raise SkipTest('PIL does not have Python 3 support')
class TestImage(Document):
image1 = ImageField()