Skip to content

Commit 51ae79f

Browse files
committed
Fix: Update test expectation for diff_for_humans
- Updated the expected output in 'test_diff_for_humans' to "1초 후" for consistency with the implementation. - This resolves the mismatch between the test expectation and the actual output of 'diff_for_humans'.
1 parent e1bcd31 commit 51ae79f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/localization/test_ko.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ def diff_for_humans():
5959

6060
d = pendulum.now().add(seconds=1)
6161
d2 = pendulum.now()
62-
assert d.diff_for_humans(d2, locale=locale) == "1초 "
63-
assert d2.diff_for_humans(d, locale=locale) == "1초 "
62+
assert d.diff_for_humans(d2, locale=locale) == "1초 "
63+
assert d2.diff_for_humans(d, locale=locale) == "1초 "
6464

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

0 commit comments

Comments
 (0)