mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-10551 not U+%06X but U+%04X
X-SVN-Rev: 36513
This commit is contained in:
parent
076242b224
commit
981f1e0231
1 changed files with 2 additions and 2 deletions
|
@ -693,7 +693,7 @@ ConversionTest::TestDefaultIgnorableCallback() {
|
|||
|
||||
outputLength = ucnv_fromUChars(cnv, output, 10, UnicodeString::fromUTF32(input, 1).getTerminatedBuffer(), -1, &status);
|
||||
if (U_FAILURE(status) || outputLength != 0) {
|
||||
errln("Ignorable code point: U+%06X not skipped as expected - %s", input[0], u_errorName(status));
|
||||
errln("Ignorable code point: U+%04X not skipped as expected - %s", input[0], u_errorName(status));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -711,7 +711,7 @@ ConversionTest::TestDefaultIgnorableCallback() {
|
|||
|
||||
outputLength = ucnv_fromUChars(cnv, output, 10, UnicodeString::fromUTF32(input, 1).getTerminatedBuffer(), -1, &status);
|
||||
if (U_FAILURE(status) || outputLength <= 0) {
|
||||
errln("Non-ignorable code point: U+%06X skipped unexpectedly - %s", input[0], u_errorName(status));
|
||||
errln("Non-ignorable code point: U+%04X skipped unexpectedly - %s", input[0], u_errorName(status));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue