Skip to content

Commit bc56afe

Browse files
committed
Fix #145 Scotland not working for PublicHolidays(year)
1 parent c380e8d commit bc56afe

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

src/PublicHoliday/UKBankHoliday.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ public override IDictionary<DateTime, string> PublicHolidayNames(int year)
327327
/// <returns></returns>
328328
public override IList<DateTime> PublicHolidays(int year)
329329
{
330-
return BankHolidays(year);
330+
return PublicHolidayNames(year).Keys.ToList();
331331
}
332332

333333
/// <summary>

tests/PublicHolidayTests/TestUKBankHoliday.cs

+10
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,16 @@ public void TestScotland2022()
363363
}
364364
}
365365

366+
367+
[TestMethod]
368+
public void TestScotland2025()
369+
{
370+
//according to https://www.mygov.scot/scotland-bank-holidays official dates:
371+
var ukHols = new UKBankHoliday { UkCountry = UKBankHoliday.UkCountries.Scotland };
372+
var hols = ukHols.PublicHolidays(2025);
373+
Assert.AreEqual(9, hols.Count, "There are 9 holidays");
374+
}
375+
366376
[TestMethod]
367377
public void TestNortherIreland2021()
368378
{

0 commit comments

Comments
 (0)