1414 clean_text ,
1515 filter_text ,
1616 format_value_display ,
17- is_puncutation ,
17+ is_punctuation ,
1818 load_text ,
1919 split_text ,
2020 split_text_list_by_length ,
@@ -372,8 +372,8 @@ def test_url_error(self, mock_client):
372372 load_text ("http://example.com/error.txt" )
373373
374374
375- class TestIsPuncutation :
376- """Test suite for is_puncutation ."""
375+ class TestIsPunctuation :
376+ """Test suite for is_punctuation ."""
377377
378378 @pytest .mark .smoke
379379 @pytest .mark .parametrize (
@@ -392,8 +392,8 @@ class TestIsPuncutation:
392392 ],
393393 )
394394 def test_invocation (self , text , expected ):
395- """Test is_puncutation with various characters."""
396- result = is_puncutation (text )
395+ """Test is_punctuation with various characters."""
396+ result = is_punctuation (text )
397397 assert result == expected
398398
399399 @pytest .mark .sanity
@@ -405,9 +405,9 @@ def test_invocation(self, text, expected):
405405 ],
406406 )
407407 def test_invalid_invocation (self , text ):
408- """Test is_puncutation with invalid inputs."""
408+ """Test is_punctuation with invalid inputs."""
409409 with pytest .raises ((TypeError , AttributeError )):
410- is_puncutation (text )
410+ is_punctuation (text )
411411
412412
413413class TestEndlessTextCreator :
0 commit comments