From b5662520aacd0427245a5ef2322734031135c2ac Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Sun, 23 Feb 2025 11:04:24 -0500 Subject: [PATCH] Add one additional ellipsis test to test_utils_string --- tests/test_utils_string.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_utils_string.py b/tests/test_utils_string.py index 4b08bd411..e4cdb4cb4 100644 --- a/tests/test_utils_string.py +++ b/tests/test_utils_string.py @@ -17,6 +17,7 @@ class TestUtilsString(unittest.IsolatedAsyncioTestCase): assert match_endofsentence("This is a sentence;") == 19 assert match_endofsentence("This is a sentence...") == 21 assert match_endofsentence("This is a sentence . . .") == 24 + assert match_endofsentence("This is a sentence. ..") == 22 assert not match_endofsentence("This is not a sentence") assert not match_endofsentence("This is not a sentence,") assert not match_endofsentence("This is not a sentence, ")