LANG-271 - Change tests now JDK1.6 states the US has two national languages

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@430537 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2006-08-10 21:26:27 +00:00
parent 69b1599585
commit e6cde16e0a
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@
*
* @author Chris Hyzer
* @author Stephen Colebourne
* @version $Id$
* @version $Id: LocaleUtilsTest.java 307282 2005-10-08 10:04:20Z scolebourne $
*/
public class LocaleUtilsTest extends TestCase {
@ -423,7 +423,7 @@ private void assertLanguageByCountry(String country, String[] languages) {
*/
public void testLanguagesByCountry() {
assertLanguageByCountry(null, new String[0]);
assertLanguageByCountry("US", new String[]{"en"});
assertLanguageByCountry("GB", new String[]{"en"});
assertLanguageByCountry("ZZ", new String[0]);
assertLanguageByCountry("CH", new String[]{"fr", "de", "it"});
}