From eceaea618f8f8e8c39e327555fa09cdd1dce7ae3 Mon Sep 17 00:00:00 2001 From: kajarenc Date: Fri, 15 Aug 2025 17:38:21 +0400 Subject: [PATCH 1/2] Fix typo in the test name --- pandas/tests/tseries/holiday/test_holiday.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/tseries/holiday/test_holiday.py b/pandas/tests/tseries/holiday/test_holiday.py index 054fc07e4180f..eeca75c4e1095 100644 --- a/pandas/tests/tseries/holiday/test_holiday.py +++ b/pandas/tests/tseries/holiday/test_holiday.py @@ -340,7 +340,7 @@ class TestHolidayCalendar(AbstractHolidayCalendar): tm.assert_index_equal(date_interval_high, expected_results) -def test_holidays_with_timezone_specified_but_no_occurences(): +def test_holidays_with_timezone_specified_but_no_occurrences(): # GH 54580 # _apply_rule() in holiday.py was silently dropping timezones if you passed it # an empty list of holiday dates that had timezone information From 7a61a6cffa3ae746240b37c1b166745cdbe46df4 Mon Sep 17 00:00:00 2001 From: kajarenc Date: Fri, 15 Aug 2025 18:08:50 +0400 Subject: [PATCH 2/2] Empty commit to retrigger CI