tst_QChar::fromUcs4(): deduplicate a test-case

There were two copies of the 0x1D157 row and we can't remember why.
So change one of them to the Chakma digit 3 (a spiral) and annote all
three test-cses with what meaning Unicode assigns to them.

Change-Id: I95837588bd5944f7f2c39c8438d9076e844e4dd0
Reviewed-by: Marc Mutz <marc.mutz@qt.io>
This commit is contained in:
Edward Welbourne 2022-10-10 15:40:19 +02:00
parent 95230ffd81
commit d1bf556e24

View File

@ -66,9 +66,9 @@ void tst_QChar::fromUcs4_data()
QTest::addRow("0x%08X", ucs4) << ucs4;
};
row(0x2f868);
row(0x1D157);
row(0x1D157);
row(0x2f868); // a CJK Compatibility Ideograph
row(0x11139); // Chakma digit 3
row(0x1D157); // Musical Symbol Void Notehead
}
void tst_QChar::fromUcs4()