--- old/test/java/time/test/java/time/format/TestDateTimeFormatSymbols.java 2013-04-11 23:18:00.000000000 -0700 +++ new/test/java/time/test/java/time/format/TestDateTimeFormatSymbols.java 2013-04-11 23:18:00.000000000 -0700 @@ -59,10 +59,9 @@ */ package test.java.time.format; -import java.time.format.*; - import static org.testng.Assert.assertSame; +import java.time.format.DateTimeFormatSymbols; import java.util.Locale; import org.testng.annotations.Test; @@ -73,7 +72,7 @@ @Test public class TestDateTimeFormatSymbols { - @Test(groups={"implementation"}) + @Test public void test_of_Locale_cached() { DateTimeFormatSymbols loc1 = DateTimeFormatSymbols.of(Locale.CANADA); DateTimeFormatSymbols loc2 = DateTimeFormatSymbols.of(Locale.CANADA); @@ -81,7 +80,7 @@ } //----------------------------------------------------------------------- - @Test(groups={"implementation"}) + @Test public void test_ofDefaultLocale_cached() { DateTimeFormatSymbols loc1 = DateTimeFormatSymbols.ofDefaultLocale(); DateTimeFormatSymbols loc2 = DateTimeFormatSymbols.ofDefaultLocale();