# HG changeset patch # User rriggs # Date 1378997918 14400 # Node ID 0cac8db40be5e69947fe47c4da88d412d5f4676d # Parent e481217d82f22f70e4b1ce0d00621adca2aec1fb 8024618: Issues with French locale on compact1,2: expected: but was: Summary: Tests against the data of the French locale are not valid as conformance tests and are redundant with testing of the US Locale above Reviewed-by: alanb diff -r e481217d82f2 -r 0cac8db40be5 jdk/test/java/time/tck/java/time/format/TCKDateTimeTextPrinting.java --- a/jdk/test/java/time/tck/java/time/format/TCKDateTimeTextPrinting.java Thu Sep 12 17:01:39 2013 +0200 +++ b/jdk/test/java/time/tck/java/time/format/TCKDateTimeTextPrinting.java Thu Sep 12 10:58:38 2013 -0400 @@ -157,23 +157,6 @@ //----------------------------------------------------------------------- @Test - public void test_print_appendText2arg_french_long() throws Exception { - DateTimeFormatter f = builder.appendText(MONTH_OF_YEAR, TextStyle.FULL).toFormatter(Locale.FRENCH); - LocalDateTime dt = LocalDateTime.of(2010, 1, 1, 0, 0); - String text = f.format(dt); - assertEquals(text, "janvier"); - } - - @Test - public void test_print_appendText2arg_french_short() throws Exception { - DateTimeFormatter f = builder.appendText(MONTH_OF_YEAR, TextStyle.SHORT).toFormatter(Locale.FRENCH); - LocalDateTime dt = LocalDateTime.of(2010, 1, 1, 0, 0); - String text = f.format(dt); - assertEquals(text, "janv."); - } - - //----------------------------------------------------------------------- - @Test public void test_appendTextMap() throws Exception { Map map = new HashMap(); map.put(1L, "JNY");