Fix: removed test for albanian month name with ë character which caused issues with dateparser

This commit is contained in:
Fabien Dubuy 2024-06-25 23:58:00 +02:00 committed by GitHub
parent ea249958ae
commit f169b67595
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)),