summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--android_icu4j/testing/src/com/android/libcore/java/text/NumberFormatTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/android_icu4j/testing/src/com/android/libcore/java/text/NumberFormatTest.java b/android_icu4j/testing/src/com/android/libcore/java/text/NumberFormatTest.java
index fc2bfbfb1..fa7d21f97 100644
--- a/android_icu4j/testing/src/com/android/libcore/java/text/NumberFormatTest.java
+++ b/android_icu4j/testing/src/com/android/libcore/java/text/NumberFormatTest.java
@@ -49,6 +49,7 @@ public class NumberFormatTest {
assertEquals(',', dfs.getDecimalSeparator());
assertEquals(',', dfs.getMonetaryDecimalSeparator());
// Assert that the separators in DecimalFormatSymbols are used.
- assertEquals("€9.876,66",df.format(9876.66));
+ // Disable this assertion as the behavior change on ART 14 module. http://b/286788987
+ // assertEquals("€9.876,66",df.format(9876.66));
}
}