mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 04:29:31 +00:00
ICU-1749 Use TRUE, not true
X-SVN-Rev: 8535
This commit is contained in:
parent
4d0fb4be3e
commit
739e08c7b2
1 changed files with 2 additions and 1 deletions
|
@ -1006,7 +1006,8 @@ UnicodeSetTest::expectPairs(const UnicodeSet& set, const UnicodeString& expected
|
|||
void UnicodeSetTest::expectToPattern(const UnicodeSet& set,
|
||||
const UnicodeString& expPat,
|
||||
char** expStrings) {
|
||||
UnicodeString pat; set.toPattern(pat, true);
|
||||
UnicodeString pat;
|
||||
set.toPattern(pat, TRUE);
|
||||
if (pat == expPat) {
|
||||
logln((UnicodeString)"Ok: toPattern() => \"" + pat + "\"");
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue