Skip to content

Commit

Permalink
ICU-22707 more vo=U: Egyp. hieroglyphs
Browse files Browse the repository at this point in the history
  • Loading branch information
markusicu committed Apr 26, 2024
1 parent c90ec08 commit da8c407
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions icu4c/source/test/intltest/ucdtest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -758,9 +758,9 @@ void UnicodeTest::TestIndicSyllabicCategory() {
void UnicodeTest::TestVerticalOrientation() {
IcuTestErrorCode errorCode(*this, "TestVerticalOrientation()");
UnicodeSet r(u"[:vo=R:]", errorCode);
assertTrue("mostly R", 0xc0000 <= r.size() && r.size() <= 0xd0000);
assertTrue("mostly R", 0xb0000 <= r.size() && r.size() <= 0xd0000);
UnicodeSet u(u"[:vo=U:]", errorCode);
assertTrue("much U", 0x40000 <= u.size() && u.size() <= 0x50000);
assertTrue("much U", 0x40000 <= u.size() && u.size() <= 0x60000);
UnicodeSet tu(u"[:vo=Tu:]", errorCode);
assertTrue("some Tu", 147 <= tu.size() && tu.size() <= 300);
assertEquals("U+0E01: Rotated", U_VO_ROTATED,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2754,9 +2754,9 @@ public void TestIndicSyllabicCategory() {
@Test
public void TestVerticalOrientation() {
UnicodeSet r = new UnicodeSet("[:vo=R:]");
assertTrue("mostly R", 0xc0000 <= r.size() && r.size() <= 0xd0000);
assertTrue("mostly R", 0xb0000 <= r.size() && r.size() <= 0xd0000);
UnicodeSet u = new UnicodeSet("[:vo=U:]");
assertTrue("much U", 0x40000 <= u.size() && u.size() <= 0x50000);
assertTrue("much U", 0x40000 <= u.size() && u.size() <= 0x60000);
UnicodeSet tu = new UnicodeSet("[:vo=Tu:]");
assertTrue("some Tu", 147 <= tu.size() && tu.size() <= 300);
assertEquals("U+0E01: Rotated", UCharacter.VerticalOrientation.ROTATED,
Expand Down

0 comments on commit da8c407

Please sign in to comment.