This commit is contained in:
Keith Donald 2009-11-21 18:34:04 +00:00
parent 9d354192ef
commit c3044e122c
1 changed files with 2 additions and 2 deletions

View File

@ -735,8 +735,8 @@ public class DefaultConversionTests {
// The converted list should contain all the elements in the original list
Assert.assertEquals(frozenList, converted);
// TODO Looks like it was supposed to be a copy (but CollectionToCollectionConverter
// doesn't work that way right now). Commented out (DS).
// Would fail since CollectionToCollectionConverter does not create a copy if source list (including elements) are compatible with target list -
// TODO is this optimization a suitable default?
// Assert.assertNotSame(frozenList, converted);
}