fixed typo
Python CI / test (push) Successful in 29s

This commit is contained in:
2025-06-07 15:32:48 +02:00
parent b57cc9f7ea
commit b424c2d831
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ class TestWord(unittest.TestCase):
"""Set up test fixtures."""
self.font = Font()
# Note: Font background is a tuple (255, 255, 255, 0) by default
# Note: Font language is set via constructor parameter (langauge - with typo)
# Note: Font language is set via constructor parameter (language - with typo)
def test_word_creation_minimal(self):
"""Test word creation with minimal parameters."""
+1 -1
View File
@@ -72,7 +72,7 @@ class TestStyleObjects(unittest.TestCase):
style=FontStyle.ITALIC,
decoration=TextDecoration.UNDERLINE,
background=(255, 255, 0, 255),
langauge="fr_FR"
language="fr_FR"
)
self.assertEqual(font._font_path, "/path/to/font.ttf")