blp: Remove images with unclear licenses

This commit is contained in:
Jerome Leclanche 2018-03-12 09:48:13 +02:00
parent 3a77758d9a
commit ef546cd303
9 changed files with 0 additions and 20 deletions

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 295 KiB

View File

@ -4,16 +4,6 @@ from helper import PillowTestCase, unittest
class TestFileBlp(PillowTestCase):
def test_load_blp1_alpha4(self):
im = Image.open("Tests/images/blp/blp1_alpha4.blp")
target = Image.open("Tests/images/blp/blp1_alpha4.png")
self.assert_image_equal(im, target)
def test_load_blp1_alpha5(self):
im = Image.open("Tests/images/blp/blp1_alpha5.blp")
target = Image.open("Tests/images/blp/blp1_alpha5.png")
self.assert_image_equal(im, target)
def test_load_blp2_raw(self):
im = Image.open("Tests/images/blp/blp2_raw.blp")
target = Image.open("Tests/images/blp/blp2_raw.png")
@ -29,16 +19,6 @@ class TestFileBlp(PillowTestCase):
target = Image.open("Tests/images/blp/blp2_dxt1a.png")
self.assert_image_equal(im, target)
def test_load_blp2_dxt3(self):
im = Image.open("Tests/images/blp/blp2_dxt3.blp")
target = Image.open("Tests/images/blp/blp2_dxt3.png")
self.assert_image_equal(im, target)
def test_load_blp2_dxt5(self):
im = Image.open("Tests/images/blp/blp2_dxt5.blp")
target = Image.open("Tests/images/blp/blp2_dxt5.png")
self.assert_image_equal(im, target)
if __name__ == "__main__":
unittest.main()