Skip to content

Commit

Permalink
Ignore Samoa time detection in tests
Browse files Browse the repository at this point in the history
(This is in preparation for 2021b.)
  • Loading branch information
jskeet committed Sep 25, 2021
1 parent 5c395f3 commit ba5a83b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/NodaTime.Test/TimeZones/TzdbDateTimeZoneSourceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -218,9 +218,9 @@ public void VersionId()
public void GuessZoneIdByTransitionsUncached(NamedWrapper<TimeZoneInfo> bclZoneWrapper)
{
var bclZone = bclZoneWrapper.Value;
// As of November 21st 2019, the Windows time zone database hasn't caught up
// with the Morocco change in TZDB 2019a. Skip it for now.
if (bclZone.Id == "Morocco Standard Time")
// As of September 25th 2021, the Windows time zone database hasn't caught up
// with the Samoa change in TZDB 2021b. Skip it for now.
if (bclZone.Id == "Samoa Standard Time")
{
return;
}
Expand Down

0 comments on commit ba5a83b

Please sign in to comment.