ICU-4094 fix wording of error messages
X-SVN-Rev: 16741
This commit is contained in:
parent
9f8bdd2935
commit
9144d22677
@ -642,7 +642,8 @@ public final class UCharacterTest extends TestFmwk
|
||||
if (UCharacter.getDirection(ch) != dir)
|
||||
{
|
||||
errln("FAIL \\u" + hex(ch) +
|
||||
" expected wrong direction " + dir);
|
||||
" expected direction " + dir + " but got " +
|
||||
UCharacter.getDirection(ch));
|
||||
break;
|
||||
}
|
||||
|
||||
@ -650,7 +651,8 @@ public final class UCharacterTest extends TestFmwk
|
||||
if (UCharacter.getDirectionality(ch) != bdir)
|
||||
{
|
||||
errln("FAIL \\u" + hex(ch) +
|
||||
" expected wrong directionality " + bdir);
|
||||
" expected directionality " + bdir + " but got " +
|
||||
UCharacter.getDirectionality(ch));
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user