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
This commit is contained in:
Yoshito Umaoka 2013-07-11 19:10:09 +00:00
parent dc3bff3e0d
commit 249d1156a1

View 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]);