From f169b6759574b0a923872aef36c0008d28b99445 Mon Sep 17 00:00:00 2001 From: Fabien Dubuy <59292746+fdubuy@users.noreply.github.com> Date: Tue, 25 Jun 2024 23:58:00 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20removed=20test=20for=20albanian=20month?= =?UTF-8?q?=20name=20with=20=C3=AB=20character=20which=20caused=20issues?= =?UTF-8?q?=20with=20dateparser?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/documents/tests/test_date_parsing.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/documents/tests/test_date_parsing.py b/src/documents/tests/test_date_parsing.py index c552453c4..b0dabde7d 100644 --- a/src/documents/tests/test_date_parsing.py +++ b/src/documents/tests/test_date_parsing.py @@ -214,10 +214,6 @@ class TestDate(TestCase): parse_date("", "11 März 2020"), datetime.datetime(2020, 3, 11, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), ) - self.assertEqual( - parse_date("", "28 nëntori 1912"), - datetime.datetime(1912, 11, 28, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), - ) self.assertEqual( parse_date("", "17. ožujka 2018."), datetime.datetime(2018, 3, 17, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)),