re-enable tiff from string tests - refs #1805 - closes #1831

This commit is contained in:
Dane Springmeyer 2013-05-13 09:25:05 -07:00
parent e4f2c4e94d
commit f7cad30f6c

View file

@ -59,7 +59,8 @@ def test_image_open_from_string():
eq_(len(mapnik.Image.frombuffer(buffer(im1.tostring('jpeg'))).tostring()),length)
# TODO - https://github.com/mapnik/mapnik/issues/1831
#eq_(len(mapnik.Image.fromstring(im1.tostring('tiff')).tostring()),length)
eq_(len(mapnik.Image.fromstring(im1.tostring('tiff')).tostring()),length)
eq_(len(mapnik.Image.frombuffer(buffer(im1.tostring('tiff'))).tostring()),length)
if __name__ == "__main__":
setup()