Skip to content

Commit

Permalink
updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
toofun666 committed Dec 13, 2019
1 parent f5c07d7 commit a7971f1
Show file tree
Hide file tree
Showing 2 changed files with 117 additions and 181 deletions.
2 changes: 1 addition & 1 deletion num2words/lang_TR.py
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ def to_splitnum(self, val):

def to_currency(self, value):
if int(value) == 0:
return "{}{}".format(self.ZERO, self.CURRENCY_UNIT)
return u"bedelsiz"
valueparts = self.to_cardinal(value).split(self.pointword)
if len(valueparts) == 1:
return valueparts[0] + self.CURRENCY_UNIT
Expand Down
Loading

0 comments on commit a7971f1

Please sign in to comment.