Skip to content

Commit e458465

Browse files
authored
Update tests/core/test_tokenize.py
1 parent 2c2a1ef commit e458465

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/core/test_tokenize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def test_sent_tokenize(self):
336336
# Reproduce: list with non-string items should return []
337337
# instead of raising TypeError (str.join raises TypeError, not ValueError)
338338
self.assertEqual(
339-
sent_tokenize(["สวัสดี", 123], engine="whitespace+newline"),
339+
sent_tokenize(["สวัสดี", 123], engine="whitespace+newline"), # type: ignore
340340
[],
341341
)
342342
self.assertEqual(

0 commit comments

Comments
 (0)