--- old/test/java/time/test/java/time/format/TestDateTimeTextProvider.java 2013-02-08 10:49:35.000000000 -0800 +++ new/test/java/time/test/java/time/format/TestDateTimeTextProvider.java 2013-02-08 10:49:35.000000000 -0800 @@ -180,7 +180,7 @@ @Test(dataProvider = "Text") public void test_getText(TemporalField field, Number value, TextStyle style, Locale locale, String expected) { DateTimeFormatter fmt = getFormatter(field, style).withLocale(locale); - assertEquals(fmt.print(ZonedDateTime.now().with(field, value.longValue())), expected); + assertEquals(fmt.format(ZonedDateTime.now().with(field, value.longValue())), expected); } }