We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55f52e9 commit d7a8213Copy full SHA for d7a8213
1 file changed
tests/compact/testc_util.py
@@ -33,5 +33,5 @@ def test_thai_word_tone_detector(self):
33
thai_word_tone_detector("ราคา"), [("รา", "m"), ("คา", "m")]
34
)
35
# Edge cases: None and empty string
36
- self.assertEqual(thai_word_tone_detector(None), [("", "")])
37
- self.assertEqual(thai_word_tone_detector(""), [("", "")])
+ self.assertEqual(thai_word_tone_detector(None), [])
+ self.assertEqual(thai_word_tone_detector(""), [])
0 commit comments