You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2016/06/07 00:39:53 UTC

svn commit: r1747098 - /commons/proper/collections/branches/COLLECTIONS_3_2_X/src/test/org/apache/commons/collections/map/TestCaseInsensitiveMap.java

Author: ggregory
Date: Tue Jun  7 00:39:53 2016
New Revision: 1747098

URL: http://svn.apache.org/viewvc?rev=1747098&view=rev
Log:
Can't use a Java 1.4 API when we are supposed to compile on Java 1.3 ;-)

Modified:
    commons/proper/collections/branches/COLLECTIONS_3_2_X/src/test/org/apache/commons/collections/map/TestCaseInsensitiveMap.java

Modified: commons/proper/collections/branches/COLLECTIONS_3_2_X/src/test/org/apache/commons/collections/map/TestCaseInsensitiveMap.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/branches/COLLECTIONS_3_2_X/src/test/org/apache/commons/collections/map/TestCaseInsensitiveMap.java?rev=1747098&r1=1747097&r2=1747098&view=diff
==============================================================================
--- commons/proper/collections/branches/COLLECTIONS_3_2_X/src/test/org/apache/commons/collections/map/TestCaseInsensitiveMap.java (original)
+++ commons/proper/collections/branches/COLLECTIONS_3_2_X/src/test/org/apache/commons/collections/map/TestCaseInsensitiveMap.java Tue Jun  7 00:39:53 2016
@@ -113,7 +113,7 @@ public class TestCaseInsensitiveMap exte
     // COLLECTIONS-294
     public void testLocaleIndependence() {
         Locale orig = Locale.getDefault();
-        Locale[] locales = { Locale.ENGLISH, new Locale("tr"), Locale.getDefault() };
+        Locale[] locales = { Locale.ENGLISH, new Locale("tr", ""), Locale.getDefault() };
         String[][] data = { 
             { "i", "I" },
             { "\u03C2", "\u03C3" },