ICU-13725 Fixing ambiguous assertEquals call on Linux.

X-SVN-Rev: 41273
This commit is contained in:
Shane Carr 2018-04-25 01:27:38 +00:00
parent a256316990
commit dfc04884f6

View File

@ -367,7 +367,7 @@ void DecimalQuantityTest::testMaxDigits() {
assertEquals("Should trim, toPlainString", "76.54", dq.toPlainString());
assertEquals("Should trim, toScientificString", "7.654E+1", dq.toScientificString());
assertEquals("Should trim, toLong", 76LL, dq.toLong(true));
assertEquals("Should trim, toFractionLong", 54LL, dq.toFractionLong(false));
assertEquals("Should trim, toFractionLong", (int64_t) 54, (int64_t) dq.toFractionLong(false));
assertEquals("Should trim, toDouble", 76.54, dq.toDouble());
// To test DecNum output, check the round-trip.
DecNum dn;