mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-10045 Change UNICODE_STRING_SIMPLE to a UnicodeString constructor in an attempt to fix broken builds.
X-SVN-Rev: 33489
This commit is contained in:
parent
c0ac428d94
commit
77f8f1e2c2
1 changed files with 1 additions and 1 deletions
|
@ -6741,7 +6741,7 @@ void NumberFormatTest::TestSignificantDigits(void) {
|
|||
UnicodeString expectedResult;
|
||||
for (int i = 0; i < sizeof(input)/sizeof(double); ++i) {
|
||||
numberFormat->format(input[i], result);
|
||||
expectedResult = UNICODE_STRING_SIMPLE(expected[i]);
|
||||
UnicodeString expectedResult(expected[i]);
|
||||
if (result != expectedResult) {
|
||||
errln((UnicodeString)"Expected: '" + expectedResult + "' got '" + result);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue