diff --git a/Tests/images/blp/blp1_alpha4.blp b/Tests/images/blp/blp1_alpha4.blp deleted file mode 100644 index b63663a5d..000000000 Binary files a/Tests/images/blp/blp1_alpha4.blp and /dev/null differ diff --git a/Tests/images/blp/blp1_alpha4.png b/Tests/images/blp/blp1_alpha4.png deleted file mode 100644 index 489f1616b..000000000 Binary files a/Tests/images/blp/blp1_alpha4.png and /dev/null differ diff --git a/Tests/images/blp/blp1_alpha5.blp b/Tests/images/blp/blp1_alpha5.blp deleted file mode 100644 index 3bf3002bb..000000000 Binary files a/Tests/images/blp/blp1_alpha5.blp and /dev/null differ diff --git a/Tests/images/blp/blp1_alpha5.png b/Tests/images/blp/blp1_alpha5.png deleted file mode 100644 index 1a39e42fa..000000000 Binary files a/Tests/images/blp/blp1_alpha5.png and /dev/null differ diff --git a/Tests/images/blp/blp2_dxt3.blp b/Tests/images/blp/blp2_dxt3.blp deleted file mode 100644 index 807073cf0..000000000 Binary files a/Tests/images/blp/blp2_dxt3.blp and /dev/null differ diff --git a/Tests/images/blp/blp2_dxt3.png b/Tests/images/blp/blp2_dxt3.png deleted file mode 100644 index 68fffcc49..000000000 Binary files a/Tests/images/blp/blp2_dxt3.png and /dev/null differ diff --git a/Tests/images/blp/blp2_dxt5.blp b/Tests/images/blp/blp2_dxt5.blp deleted file mode 100644 index 241d311f0..000000000 Binary files a/Tests/images/blp/blp2_dxt5.blp and /dev/null differ diff --git a/Tests/images/blp/blp2_dxt5.png b/Tests/images/blp/blp2_dxt5.png deleted file mode 100644 index 38acfe135..000000000 Binary files a/Tests/images/blp/blp2_dxt5.png and /dev/null differ diff --git a/Tests/test_file_blp.py b/Tests/test_file_blp.py index f8528427e..e0530cb1f 100644 --- a/Tests/test_file_blp.py +++ b/Tests/test_file_blp.py @@ -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()