From 79b85803999d0e10b33c5a20b5548e3b50cb2074 Mon Sep 17 00:00:00 2001 From: Minku Koo Date: Tue, 3 Dec 2024 00:06:27 +0900 Subject: [PATCH] =?UTF-8?q?test:=20swap=20"=EB=92=A4"=20and=20"=EC=95=9E"?= =?UTF-8?q?=20in=20test=20descriptions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/localization/test_ko.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/localization/test_ko.py b/tests/localization/test_ko.py index 0489c680..d036f78f 100644 --- a/tests/localization/test_ko.py +++ b/tests/localization/test_ko.py @@ -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초"