fixing unterminated fsting
Python CI / test (push) Failing after 46s

This commit is contained in:
2025-11-09 00:09:04 +01:00
parent 8dce1569c0
commit ce7293824e
7 changed files with 14 additions and 17 deletions
+2 -2
View File
@@ -381,8 +381,8 @@ class TestEPUBReader(unittest.TestCase):
# Each chapter should start with a heading
first_block = blocks[0]
self.assertIsInstance(
first_block, Heading, f"Chapter {
i + 1} should start with heading")
first_block, Heading, f"Chapter {i + 1} should start with heading"
)
def test_epub_styled_content(self):
"""Test that styled content in EPUB is properly parsed."""