Skip to content

Commit

Permalink
test: swap "뒤" and "앞" in test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Minku-Koo committed Dec 2, 2024
1 parent 51ae79f commit e44a64b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/localization/test_ko.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def diff_for_humans():

d = pendulum.now().add(seconds=1)
d2 = pendulum.now()
assert d.diff_for_humans(d2, locale=locale) == "1초 "
assert d2.diff_for_humans(d, locale=locale) == "1초 "
assert d.diff_for_humans(d2, locale=locale) == "1초 "
assert d2.diff_for_humans(d, locale=locale) == "1초 "

assert d.diff_for_humans(d2, True, locale=locale) == "1초"
assert d2.diff_for_humans(d.add(seconds=1), True, locale=locale) == "2초"

0 comments on commit e44a64b

Please sign in to comment.