@@ -249,19 +249,13 @@ public void TestFormatPeriodEn() {
249249 mf = MeasureFormat .getInstance (ULocale .GERMAN , FormatWidth .WIDE , nf );
250250 verifyFormatPeriod ("de FULL" , mf , fullDataDe );
251251 mf = MeasureFormat .getInstance (ULocale .GERMAN , FormatWidth .NUMERIC , nf );
252- if (!logKnownIssue ("CLDR-18905" , "German narrow change needs revisiting" )) {
253- verifyFormatPeriod ("de NUMERIC" , mf , numericDataDe );
254- }
255252
256253 // Same tests, with Java Locale
257254 nf = NumberFormat .getNumberInstance (Locale .GERMAN );
258255 nf .setMaximumFractionDigits (4 );
259256 mf = MeasureFormat .getInstance (Locale .GERMAN , FormatWidth .WIDE , nf );
260257 verifyFormatPeriod ("de FULL(Java Locale)" , mf , fullDataDe );
261258 mf = MeasureFormat .getInstance (Locale .GERMAN , FormatWidth .NUMERIC , nf );
262- if (!logKnownIssue ("CLDR-18905" , "German narrow change needs revisiting" )) {
263- verifyFormatPeriod ("de NUMERIC(Java Locale)" , mf , numericDataDe );
264- }
265259
266260 ULocale bengali = ULocale .forLanguageTag ("bn" );
267261 nf = NumberFormat .getNumberInstance (bengali );
@@ -530,8 +524,8 @@ public void testManyLocaleDurations() {
530524 }
531525 String result = mf .formatMeasures (hours , minutes );
532526 if (!result .equals (row [2 ])) {
533- if (((ULocale )row [0 ]).equals (ULocale .GERMAN ) &&
534- ((FormatWidth )row [1 ]).equals (FormatWidth .NARROW ) &&
527+ if (((ULocale )row [0 ]).equals (ULocale .GERMAN ) &&
528+ ((FormatWidth )row [1 ]).equals (FormatWidth .NARROW ) &&
535529 logKnownIssue ("CLDR-18905" , "German narrow change needs revisiting" )
536530 ) {
537531 continue ;
@@ -1589,11 +1583,6 @@ public void TestParseBuiltIns() {
15891583 continue ;
15901584 }
15911585
1592- //if (unit.getIdentifier().equals("part-per-1e9")) {
1593- // logKnownIssue("ICU-22781", "Handle concentr/perbillion in ICU");
1594- // continue;
1595- //}
1596-
15971586 // Prove that all built-in units are parseable, except "generic" temperature
15981587 // (and for now, beaufort units)
15991588 if (unit == MeasureUnit .GENERIC_TEMPERATURE ) {
0 commit comments