Skip to content

Commit

Permalink
Exclude new time zone from TestTimeZoneUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
Akanksha-kedia authored and tdcmeehan committed Aug 30, 2023
1 parent 2735b57 commit 10a4cb9
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,22 @@ public void testNamedZones()
// http://mm.icann.org/pipermail/tz-announce/2020-October/000059.html
continue;
}
if (zoneId.equals("Europe/Zaporozhye")) {
// TODO: Remove once minimum Java version is increased 17.0.7
continue;
}
if (zoneId.equals("Europe/Uzhgorod")) {
// TODO: Remove once minimum Java version is increased 17.0.7
continue;
}
if (zoneId.equals("Europe/Kiev")) {
// TODO: Remove once minimum Java version is increased 17.0.7
continue;
}
if (zoneId.equals("Europe/Kyiv")) {
// TODO: Remove once minimum Java version is increased 17.0.7
continue;
}

DateTimeZone dateTimeZone = DateTimeZone.forID(zoneId);
DateTimeZone indexedZone = getDateTimeZone(TimeZoneKey.getTimeZoneKey(zoneId));
Expand Down

0 comments on commit 10a4cb9

Please sign in to comment.