mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 17:24:01 +00:00
ICU-21679 avoid escape of U+FFFF in a character literal
This commit is contained in:
parent
505535813f
commit
07a50207b7
1 changed files with 1 additions and 1 deletions
|
@ -279,7 +279,7 @@ UnicodeSetTest::TestPatterns(void) {
|
|||
// Throw in a test of complement
|
||||
set.complement();
|
||||
UnicodeString exp;
|
||||
exp.append((UChar)0x0000).append("aeeoouu").append((UChar)(u'z'+1)).append(u'\uFFFF');
|
||||
exp.append((UChar)0x0000).append("aeeoouu").append((UChar)(u'z'+1)).append((UChar)0xFFFF);
|
||||
expectPairs(set, exp);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue