first application elements
Python CI / test (push) Successful in 3m24s

This commit is contained in:
2025-11-07 20:00:05 +01:00
parent c4b4b0a298
commit 131d39080e
10 changed files with 1286 additions and 3 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

+2 -2
View File
@@ -308,8 +308,8 @@ class TestEbookReaderHighlighting(unittest.TestCase):
self.assertIsNotNone(result_img)
self.assertIsInstance(result_img, PILImage.Image)
self.assertEqual(result_img.size, test_img.size)
# Result should be RGBA for transparency
self.assertEqual(result_img.mode, 'RGBA')
# Result should preserve the input mode
self.assertEqual(result_img.mode, 'RGB')
if __name__ == '__main__':