Skip to content

Commit

Permalink
add test Modifying Spelling 제작년, Remove poorly used expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
yangs1202 authored Jul 28, 2024
1 parent 168009d commit 1653248
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_locales.py
Original file line number Diff line number Diff line change
Expand Up @@ -2390,14 +2390,14 @@ def test_format_relative(self):
assert self.locale._format_relative("2시간", "hours", -2) == "2시간 전"
assert self.locale._format_relative("하루", "day", -1) == "어제"
assert self.locale._format_relative("2일", "days", -2) == "그제"
assert self.locale._format_relative("3일", "days", -3) == "그끄제"
assert self.locale._format_relative("3일", "days", -3) == "3일 전"
assert self.locale._format_relative("4일", "days", -4) == "4일 전"
assert self.locale._format_relative("1주", "week", -1) == "1주 전"
assert self.locale._format_relative("2주", "weeks", -2) == "2주 전"
assert self.locale._format_relative("한달", "month", -1) == "한달 전"
assert self.locale._format_relative("2개월", "months", -2) == "2개월 전"
assert self.locale._format_relative("1년", "year", -1) == "작년"
assert self.locale._format_relative("2년", "years", -2) == "제작년"
assert self.locale._format_relative("2년", "years", -2) == "재작년"
assert self.locale._format_relative("3년", "years", -3) == "3년 전"

def test_ordinal_number(self):
Expand Down

0 comments on commit 1653248

Please sign in to comment.