14
14
clean_text ,
15
15
filter_text ,
16
16
format_value_display ,
17
- is_puncutation ,
17
+ is_punctuation ,
18
18
load_text ,
19
19
split_text ,
20
20
split_text_list_by_length ,
@@ -372,8 +372,8 @@ def test_url_error(self, mock_client):
372
372
load_text ("http://example.com/error.txt" )
373
373
374
374
375
- class TestIsPuncutation :
376
- """Test suite for is_puncutation ."""
375
+ class TestIsPunctuation :
376
+ """Test suite for is_punctuation ."""
377
377
378
378
@pytest .mark .smoke
379
379
@pytest .mark .parametrize (
@@ -392,8 +392,8 @@ class TestIsPuncutation:
392
392
],
393
393
)
394
394
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 )
397
397
assert result == expected
398
398
399
399
@pytest .mark .sanity
@@ -405,9 +405,9 @@ def test_invocation(self, text, expected):
405
405
],
406
406
)
407
407
def test_invalid_invocation (self , text ):
408
- """Test is_puncutation with invalid inputs."""
408
+ """Test is_punctuation with invalid inputs."""
409
409
with pytest .raises ((TypeError , AttributeError )):
410
- is_puncutation (text )
410
+ is_punctuation (text )
411
411
412
412
413
413
class TestEndlessTextCreator :
0 commit comments