From f9faad0997b7aab93c3ff7007431a84c65c0eaaf Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Tue, 12 Aug 2025 15:45:04 -0700 Subject: [PATCH] test_timezone: Ignore legacy MET, MEST aliases. Signed-off-by: Anders Kaseorg --- zerver/tests/test_timezone.py | 1 + 1 file changed, 1 insertion(+) diff --git a/zerver/tests/test_timezone.py b/zerver/tests/test_timezone.py index 8b0742f0c7..3a5bbb32f7 100644 --- a/zerver/tests/test_timezone.py +++ b/zerver/tests/test_timezone.py @@ -35,6 +35,7 @@ class TimeZoneTest(ZulipTestCase): datetime(now.year, 12, 21, tzinfo=timezone.utc), ] extra = {*common_timezones.items(), *ambiguous_abbrevs} + extra -= {("MET", +3600), ("MEST", +7200)} # Removed in tzdata 2024b for name in zoneinfo.available_timezones(): tz = zoneinfo.ZoneInfo(name) for date in dates: