mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 12:40:02 +00:00
ICU-2119 recognize en_IN as special case
X-SVN-Rev: 11596
This commit is contained in:
parent
8bc9f647b8
commit
aad1eb9c98
1 changed files with 5 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
/*****************************************************************************************
|
||||
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/dev/test/format/NumberRegression.java,v $
|
||||
* $Date: 2002/09/14 21:36:28 $
|
||||
* $Revision: 1.12 $
|
||||
* $Date: 2003/04/19 05:51:09 $
|
||||
* $Revision: 1.13 $
|
||||
*
|
||||
*****************************************************************************************
|
||||
**/
|
||||
|
@ -1002,7 +1002,9 @@ public class NumberRegression extends com.ibm.icu.dev.test.TestFmwk {
|
|||
|
||||
String result2 = fmt2.format(1.111);
|
||||
|
||||
if (!result1.equals(result2)) {
|
||||
// NOTE: en_IN is a special case (ChoiceFormat currency display name)
|
||||
if (!result1.equals(result2) &&
|
||||
!locales[i].toString().equals("en_IN")) {
|
||||
errln("Results for " + locales[i] + " differ: " +
|
||||
result1 + " vs " + result2);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue