default conversion service instance caching and tests

This commit is contained in:
Keith Donald 2009-11-19 15:23:56 +00:00
parent 7b561c76fe
commit da5432fbf5
1 changed files with 0 additions and 1 deletions

View File

@ -549,7 +549,6 @@ public class DefaultConversionTests {
foo.put("1", "BAR");
foo.put("2", "BAZ");
String result = conversionService.convert(foo, String.class);
System.out.println(result);
assertTrue(result.contains("1=BAR"));
assertTrue(result.contains("2=BAZ"));
}