Skip to content

Commit 0eaec5f

Browse files
Applying suggestions by coderabbit
1 parent ba81c64 commit 0eaec5f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/countries/test_pitcairn_islands.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class TestPitcairnIslands(CommonCountryTests, unittest.TestCase):
2121
@classmethod
2222
def setUpClass(cls):
2323
super().setUpClass(
24-
PitcairnIslands, years=range(2000, 2050), years_non_observed=range(2000, 2050)
24+
PitcairnIslands, years=range(2000, 2050)
2525
)
2626

2727
def test_country_aliases(self):
@@ -58,7 +58,7 @@ def test_kings_birthday(self):
5858
self.assertHolidayName("King's Birthday", "2024-06-08", "2025-06-14")
5959
# Test Queen's Birthday for earlier years
6060
self.assertHolidayName("Queen's Birthday", "2022-06-11")
61-
61+
6262
def test_bounty_day(self):
6363
"""Test Bounty Day holiday."""
6464
self.assertHolidayName(
@@ -74,7 +74,7 @@ def test_easter_monday(self):
7474
self.assertHolidayName("Easter Monday", "2024-04-01", "2025-04-21")
7575

7676
def test_monarch_birthday_naming(self):
77-
+ """Test that monarch's birthday uses correct title based on year."""
77+
"""Test that monarch's birthday uses correct title based on year."""
7878
# Test Queen's Birthday (before 2023) and King's Birthday (from 2023)
79-
+ self.assertHolidayName("Queen's Birthday", "2022-06-11")
79+
self.assertHolidayName("Queen's Birthday", "2022-06-11")
8080
self.assertHolidayName("King's Birthday", "2023-06-10")

0 commit comments

Comments
 (0)