remove broken unit test

This commit is contained in:
Andrew Cassidy 2021-04-10 22:25:42 -07:00
parent 69fdd6a4c8
commit 9156ac199b

View File

@ -182,11 +182,6 @@ class TestBC1Encoder(unittest.TestCase):
else:
self.assertFalse(out_block.is_3color, 'returned 3-color block in 4-color mode')
def test_image(self):
image = Image.open(os.path.join(image_path, 'Bun.png'))
rawtex = quicktex.RawTexture.frombytes(image.tobytes('raw', 'RGBA'), *image.size)
out_tex = self.bc1_encoder.encode(rawtex)
class TestBC1Decoder(unittest.TestCase):
"""Test BC1Decoder"""