diff --git a/icu4c/source/test/cintltst/cmsccoll.c b/icu4c/source/test/cintltst/cmsccoll.c index 361b18a1449..41653bcef09 100644 --- a/icu4c/source/test/cintltst/cmsccoll.c +++ b/icu4c/source/test/cintltst/cmsccoll.c @@ -5788,10 +5788,6 @@ static void TestNextSortKeyPartJaIdentical(void) while (keyPartLen == KEY_PART_SIZE) { keyPartLen = ucol_nextSortKeyPart(coll, &iter, state, keyPart, KEY_PART_SIZE, &status); if (U_FAILURE(status)) { - if(log_knownIssue("10595", "Ignoring an error returned by ucol_nextSortKeyPart")) { - status = U_ZERO_ERROR; - continue; - } log_err_status(status, "ERROR: in iterating next sort key part: %s\n", myErrorName(status)); break; } diff --git a/icu4c/source/test/perf/collperf2/collperf2.cpp b/icu4c/source/test/perf/collperf2/collperf2.cpp index 6376203b997..d0c0c129124 100644 --- a/icu4c/source/test/perf/collperf2/collperf2.cpp +++ b/icu4c/source/test/perf/collperf2/collperf2.cpp @@ -377,10 +377,6 @@ void NextSortKeyPart::call(UErrorCode* status) partLen = ucol_nextSortKeyPart(coll, &iter, state, part, bufSize, status); events++; } - // Workaround for #10595 - if (U_FAILURE(*status)) { - *status = U_ZERO_ERROR; - } } free(part); } @@ -448,10 +444,6 @@ void NextSortKeyPartUTF8::call(UErrorCode* status) partLen = ucol_nextSortKeyPart(coll, &iter, state, part, bufSize, status); events++; } - // Workaround for #10595 - if (U_FAILURE(*status)) { - *status = U_ZERO_ERROR; - } } free(part); }