Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
wannaphong committed Mar 31, 2017
1 parent f025bb3 commit ad41eff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pythainlp/test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ def testSegmentDict(self):
def testRank(self):
self.assertEqual(rank(["แมว","คน","แมว"]),Counter({'แมว': 2, 'คน': 1}))
def testChange(self):
self.assertEqual(texttothai("l;ylfu8iy["),six.u('สวัสดีครับ'))
self.assertEqual(texttothai("l;ylfu8iy["),'สวัสดีครับ')
def testRomanization(self):
self.assertEqual(romanization("แมว"),six.u('mæw'))
self.assertEqual(romanization("แมว"),'mæw')
def testNumber(self):
self.assertEqual(numtowords(5611116.50),six.u('ห้าล้านหกแสนหนึ่งหมื่นหนึ่งพันหนึ่งร้อยสิบหกบาทห้าสิบสตางค์'))
self.assertEqual(numtowords(5611116.50),'ห้าล้านหกแสนหนึ่งหมื่นหนึ่งพันหนึ่งร้อยสิบหกบาทห้าสิบสตางค์')
def testTag(self):
self.assertEqual(tag("คุณกำลังประชุม"),[('คุณ', 'PPRS'), ('กำลัง', 'XVBM'), ('ประชุม', 'VACT')])
if __name__ == '__main__':
Expand Down

0 comments on commit ad41eff

Please sign in to comment.