version https://git-lfs.github.com/spec/v1
-oid sha256:f700d6ddaf706003c86b54aba1157e85324ff214504ce0cf340437fae8223dbd
-size 11754752
+oid sha256:848a445cb828689cd5bca20bfd321db5503ef66c0a94d929fc108a28d0c5595f
+size 11754757
// compare the Currency and Currency Cash Digits
// Note that as of CLDR 26:
// * TWD switches from 0 decimals to 2; PKR still has 0, so change test to that
- // * CAD and all other currencies that rounded to .05 no longer do
+ // * CAD rounds to .05 in the cash style only.
for (int i = 0; i < 2; i++) {
String original_expected = "PKR124";
DecimalFormat custom = null;
}
String cash_rounding_currency = fmt.format(123.567);
- String cash__rounding_currency_expected = "CA$123.57";
+ String cash__rounding_currency_expected = "CA$123.55";
assertEquals("Test Currency Context", cash__rounding_currency_expected, cash_rounding_currency);
}