From: Yoshito Umaoka Date: Thu, 11 Jul 2013 19:10:09 +0000 (+0000) Subject: ICU-10222 Changed a test case in testPluralFormat to use locale 'uk' instead of ... X-Git-Tag: milestone-59-0-1~2771 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=249d1156a1223d19f21504d91a1e777fa31c488e;p=icu ICU-10222 Changed a test case in testPluralFormat to use locale 'uk' instead of 'ru'. The test case was originally written for the rule set formerly shared by 'ru' and 'uk', but the rule for 'ru' had been changed. X-SVN-Rev: 33914 --- diff --git a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/TestMessageFormat.java b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/TestMessageFormat.java index 95c1f72a9f4..caa7f3271e2 100644 --- a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/TestMessageFormat.java +++ b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/TestMessageFormat.java @@ -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]);