Skip to content

Commit 717b8dc

Browse files
committed
CLDR-18267 BRS v47: update logKnownIssues
Remove logKnownIssue from the following which were fixed but the test wasn't updated: - CLDR-17544 - CLDR-15663 Also updated a ticket that was closed: - CLDR-15663 changed to CLDR-17857
1 parent 3453b29 commit 717b8dc

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,9 +350,9 @@ public void TestMissingInfoForLanguage() {
350350
if (englishName == null) {
351351
Level covLevel = ccl.getEffectiveCoverageLevel(language);
352352
if (covLevel == null || !covLevel.isAtLeast(Level.BASIC)) {
353-
// https://unicode-org.atlassian.net/browse/CLDR-15663
353+
// https://unicode-org.atlassian.net/browse/CLDR-17857
354354
if (logKnownIssue(
355-
"CLDR-15663",
355+
"CLDR-17857",
356356
"English translation should not be required for sub-basic language name")) {
357357
continue; // skip error
358358
}

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

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,7 @@ public void TestPathHeadersAndValues() {
122122
CLDRFile englishFile = testInfo.getCldrFactory().make("en", true);
123123
PathHeader.Factory phf = PathHeader.getFactory(englishFile);
124124
Status status = new Status();
125-
final String exemptLocale = "sv";
126-
final String exemptPathIfLocale =
127-
"//ldml/dates/calendars/calendar[@type=\"dangi\"]/dateTimeFormats/availableFormats/dateFormatItem[@id=\"yMd\"]";
128-
129125
for (String locale : getLocalesToTest()) {
130-
boolean isExemptLocale = locale.equals(exemptLocale);
131-
132126
if (!StandardCodes.isLocaleAtLeastBasic(locale)) {
133127
continue;
134128
}
@@ -138,10 +132,6 @@ public void TestPathHeadersAndValues() {
138132

139133
for (Iterator<String> it = file.iterator(); it.hasNext(); ) {
140134
String path = it.next();
141-
if (isExemptLocale && path.equals(exemptPathIfLocale)) {
142-
logKnownIssue("CLDR-17544", "Can't reproduce locally");
143-
continue;
144-
}
145135
if (extraPaths.contains(path)) {
146136
checkFullpathValue(path, file, locale, status, true /* extra path */);
147137
} else {

0 commit comments

Comments
 (0)