--- old/test/java/util/PluggableLocale/ClasspathTest.java 2014-12-15 13:29:30.626656366 -0800 +++ new/test/java/util/PluggableLocale/ClasspathTest.java 2014-12-15 13:29:30.271650572 -0800 @@ -36,13 +36,13 @@ ClasspathTest() { /* - * Since providers can only be loaded from the extension directory, - * this test will fail if they are loaded from classpath. + * Since providers can be loaded from the application's classpath, + * this test will fail if they are NOT loaded from classpath. */ Locale OSAKA = new Locale("ja", "JP", "osaka"); List availableLocales = Arrays.asList(Locale.getAvailableLocales()); - if (availableLocales.contains(OSAKA)) { - throw new RuntimeException("LSS providers were loaded from the class path."); + if (!availableLocales.contains(OSAKA)) { + throw new RuntimeException("LSS providers were NOT loaded from the class path."); } } }