formatting

This commit is contained in:
Andrew Cassidy 2021-04-07 23:21:54 -07:00
parent 7154857323
commit ac16b14a92
8 changed files with 8 additions and 8 deletions

View File

@ -139,6 +139,7 @@ class TestBC4Texture(unittest.TestCase):
class TestBC4Encoder(unittest.TestCase): class TestBC4Encoder(unittest.TestCase):
"""Test BC4Encoder""" """Test BC4Encoder"""
# 6-value blocks are not yet supported by the encoder so we only run one test # 6-value blocks are not yet supported by the encoder so we only run one test
@classmethod @classmethod
def setUpClass(cls): def setUpClass(cls):
@ -180,4 +181,3 @@ class TestBC4Decoder(unittest.TestCase):
img_hist = img_diff.histogram() img_hist = img_diff.histogram()
self.assertEqual(16, img_hist[0], 'decoded block is incorrect') self.assertEqual(16, img_hist[0], 'decoded block is incorrect')