Skip to content

Commit e8a6374

Browse files
authored
CLDR-16439 zone alias South_Pole was moved to McMurdo, so remove it from Auckland (#4592)
1 parent ecaaa72 commit e8a6374

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

common/bcp47/timezone.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ For terms of use, see http://www.unicode.org/copyright.html
305305
<type name="npktm" description="Kathmandu, Nepal" alias="Asia/Katmandu Asia/Kathmandu" iana="Asia/Kathmandu"/>
306306
<type name="nrinu" description="Nauru" alias="Pacific/Nauru"/>
307307
<type name="nuiue" description="Niue" alias="Pacific/Niue"/>
308-
<type name="nzakl" description="Auckland, New Zealand" alias="Pacific/Auckland Antarctica/South_Pole NZ"/>
308+
<type name="nzakl" description="Auckland, New Zealand" alias="Pacific/Auckland NZ"/>
309309
<type name="nzcht" description="Chatham Islands, New Zealand" alias="Pacific/Chatham NZ-CHAT"/>
310310
<type name="ommct" description="Muscat, Oman" alias="Asia/Muscat"/>
311311
<type name="papty" description="Panama" alias="America/Panama EST"/>

tools/cldr-code/src/test/java/org/unicode/cldr/unittest/TestBCP47.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,14 @@ public void testBcp47IdsForAllTimezoneIds() {
349349
if (BOGUS_TZIDS.contains(tzid)) {
350350
continue;
351351
}
352+
if (tzid.equals("Antarctica/South_Pole")) {
353+
// This non-canonical alias was moved from one zone to another per CLDR-16439;
354+
// skip test until we have an ICU updated to reflect this.
355+
logKnownIssue(
356+
"CLDR-18361",
357+
"BRS 48 task, update ICU4J libs for CLDR after 48m1 integration to ICU");
358+
continue;
359+
}
352360
String bcp47Id = aliasToId.get(tzid);
353361
if (!assertNotNull(tzid, bcp47Id)) {
354362
missingAliases.add(tzid);

0 commit comments

Comments
 (0)