simplification of fonts
Python CI / test (push) Failing after 6m1s

This commit is contained in:
2025-07-12 17:49:58 +02:00
parent b1c4a1c125
commit 36281be77a
8 changed files with 363 additions and 54 deletions
+2 -2
View File
@@ -244,7 +244,7 @@ class TestLine(unittest.TestCase):
halign=Alignment.LEFT
)
# Create a word to add
# Create a word to add
for i in range(100):
word = Word(text="AAAAAAAA", style=self.style)
@@ -254,7 +254,7 @@ class TestLine(unittest.TestCase):
success, overflow_part = line.add_word(word)
# If successful, the word should be added
if overflow_part:
self.assertEqual(overflow_part.text , "AAAA")
self.assertEqual(overflow_part.text , "AA")
return
self.assertFalse(True)