Skip to content

Commit bc382ab

Browse files
committed
Add missing closing parenthesis
1 parent 58c508a commit bc382ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_util.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,13 +363,13 @@ def test_thaiword_to_date(self):
363363
now + timedelta(days=-2), thaiword_to_date("วานซืน", now)
364364
)
365365

366-
self.assertIsNotNone(thaiword_to_date("วันนี้")
366+
self.assertIsNotNone(thaiword_to_date("วันนี้"))
367367

368368
# it's error if "พรุ่งนี้" is 1 not 32.
369-
#self.assertEqual(
369+
# self.assertEqual(
370370
# thaiword_to_date("วันนี้").day + 1,
371371
# thaiword_to_date("พรุ่งนี้").day,
372-
#)
372+
# )
373373
self.assertIsNone(thaiword_to_date("วันไหน"))
374374

375375
# ### pythainlp.util.trie

0 commit comments

Comments
 (0)