mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-13740 Java 6 compatibility fix
X-SVN-Rev: 41414
This commit is contained in:
parent
9cc7d14b62
commit
898f5a6b11
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ public class NumberFormatDataDrivenTest {
|
|||
try {
|
||||
actualDecimal = new BigDecimal(actual.toString());
|
||||
} catch (NumberFormatException e) {
|
||||
throw new AssertionError("Could not convert to BigDecimal: " + actual.toString(), e);
|
||||
throw new AssertionError("Could not convert to BigDecimal: " + actual.toString() + " - " + e.getMessage());
|
||||
}
|
||||
if (expectedDecimal.compareTo(actualDecimal) != 0) {
|
||||
return "Expected: " + expected + ", got: " + actual;
|
||||
|
|
Loading…
Add table
Reference in a new issue