]> granicus.if.org Git - icu/commitdiff
ICU-10222 Changed a test case in testPluralFormat to use locale 'uk' instead of ...
authorYoshito Umaoka <y.umaoka@gmail.com>
Thu, 11 Jul 2013 19:10:09 +0000 (19:10 +0000)
committerYoshito Umaoka <y.umaoka@gmail.com>
Thu, 11 Jul 2013 19:10:09 +0000 (19:10 +0000)
X-SVN-Rev: 33914

icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/TestMessageFormat.java

index 95c1f72a9f4c1f81471fd352bc55b22a8b03a873..caa7f3271e27858de7840f9bda0cded3fb9edd9b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 **********************************************************************
-* Copyright (c) 2004-2012, International Business Machines
+* Copyright (c) 2004-2013, International Business Machines
 * Corporation and others.  All Rights Reserved.
 **********************************************************************
 * Author: Alan Liu
@@ -1297,12 +1297,12 @@ public class TestMessageFormat extends com.ibm.icu.dev.test.TestFmwk {
                     "There {0, plural, one{is # zavod}few{are {0, " +
                       "number,###.0} zavoda} other{are # zavodov}} in the " +
                       "directory.",
-                    new ULocale("ru"));
+                    new ULocale("uk"));
             MessageFormat mfAlpha = new MessageFormat (
                     "There {argument, plural, one{is # zavod}few{" +
                       "are {argument, number,###.0} zavoda} other{are # " + 
                       "zavodov}} in the directory.",
-                    new ULocale("ru"));
+                    new ULocale("uk"));
             Object objArray[] = {new Long(4)};
             HashMap objMap = new HashMap();
             objMap.put("argument", objArray[0]);