From 78935daf5a83fc96c1cba9dbd4f2b76165c74149 Mon Sep 17 00:00:00 2001 From: Bart Skowron Date: Mon, 6 Jun 2022 23:24:26 +0200 Subject: [PATCH] gh-69714: Restore the test thrown out by cb0523e67c --- Lib/test/test_calendar.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Lib/test/test_calendar.py b/Lib/test/test_calendar.py index e60326e292f3..07126a2bf4de 100644 --- a/Lib/test/test_calendar.py +++ b/Lib/test/test_calendar.py @@ -559,11 +559,27 @@ class CalendarTestCase(unittest.TestCase): self.assertEqual(len(local_weekday), 10) self.assertEqual(len(local_weekday_abbr), 3) self.assertGreaterEqual(len(local_month), 10) + + cal = calendar.LocaleTextCalendar(locale='') + local_weekday = cal.formatweekday(1, 10) + local_month = cal.formatmonthname(2010, 10, 10) + self.assertIsInstance(local_weekday, str) + self.assertIsInstance(local_month, str) + self.assertEqual(len(local_weekday), 10) + self.assertGreaterEqual(len(local_month), 10) + cal = calendar.LocaleHTMLCalendar(locale=None) local_weekday = cal.formatweekday(1) local_month = cal.formatmonthname(2010, 10) self.assertIsInstance(local_weekday, str) self.assertIsInstance(local_month, str) + + cal = calendar.LocaleHTMLCalendar(locale='') + local_weekday = cal.formatweekday(1) + local_month = cal.formatmonthname(2010, 10) + self.assertIsInstance(local_weekday, str) + self.assertIsInstance(local_month, str) + new_october = calendar.TextCalendar().formatmonthname(2010, 10, 10) self.assertEqual(old_october, new_october) -- 2.47.3