mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 12:40:02 +00:00
ICU-5801 Escape non-ASCII character in the test code. Merged changes in r22554 from trunk to maint-3-8.
X-SVN-Rev: 22555
This commit is contained in:
parent
3399d66d46
commit
2b12d7431f
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
*******************************************************************************
|
||||
* Copyright (C) 2006, International Business Machines Corporation and *
|
||||
* Copyright (C) 2007, International Business Machines Corporation and *
|
||||
* others. All Rights Reserved. *
|
||||
*******************************************************************************
|
||||
*/
|
||||
|
@ -221,7 +221,7 @@ public class NumberFormatTest extends ICUTestCase {
|
|||
*/
|
||||
public void testGetCurrencyInstanceLocale() {
|
||||
NumberFormat nf = NumberFormat.getCurrencyInstance(Locale.GERMANY);
|
||||
assertEquals("123.456,99 €", nf.format(123456.99));
|
||||
assertEquals("123.456,99 \u20AC", nf.format(123456.99));
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -229,7 +229,7 @@ public class NumberFormatTest extends ICUTestCase {
|
|||
*/
|
||||
public void testGetCurrencyInstanceULocale() {
|
||||
NumberFormat nf = NumberFormat.getCurrencyInstance(ULocale.GERMANY);
|
||||
assertEquals("123.456,99 €", nf.format(123456.99));
|
||||
assertEquals("123.456,99 \u20AC", nf.format(123456.99));
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue