--- old/test/java/time/test/java/time/format/TestStringLiteralPrinter.java 2013-02-08 10:49:41.000000000 -0800 +++ new/test/java/time/test/java/time/format/TestStringLiteralPrinter.java 2013-02-08 10:49:41.000000000 -0800 @@ -74,13 +74,13 @@ //----------------------------------------------------------------------- public void test_print_emptyCalendrical() throws Exception { buf.append("EXISTING"); - getFormatter("hello").printTo(EMPTY_DTA, buf); + getFormatter("hello").formatTo(EMPTY_DTA, buf); assertEquals(buf.toString(), "EXISTINGhello"); } public void test_print_dateTime() throws Exception { buf.append("EXISTING"); - getFormatter("hello").printTo(dta, buf); + getFormatter("hello").formatTo(dta, buf); assertEquals(buf.toString(), "EXISTINGhello"); } @@ -88,7 +88,7 @@ public void test_print_emptyAppendable() throws Exception { - getFormatter("hello").printTo(dta, buf); + getFormatter("hello").formatTo(dta, buf); assertEquals(buf.toString(), "hello"); }