mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-18 19:25:49 +00:00
ICU-705 compare converter names case-insensitively
X-SVN-Rev: 3356
This commit is contained in:
parent
1446e3f548
commit
e8b1370dd1
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ static int dotestname(const char *name, const char *standard, const char *expect
|
|||
if (!tag) {
|
||||
log_err("FAIL: could not find %s standard name for %s\n", standard, name);
|
||||
res = 0;
|
||||
} else if (expected && uprv_strcmp(expected, tag)) {
|
||||
} else if (expected && uprv_stricmp(expected, tag)) {
|
||||
log_err("FAIL: expected %s for %s standard name for %s, got %s\n", expected, standard, name, tag);
|
||||
res = 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue