-
Notifications
You must be signed in to change notification settings - Fork 38.8k
Closed
Labels
in: coreIssues in core modules (aop, beans, core, context, expression)Issues in core modules (aop, beans, core, context, expression)type: bugA general bugA general bug
Milestone
Description
Lance Arlaus opened SPR-6477 and commented
DefaultConversionService does not support converting a List to an Object
The expectation is to return the original list unchanged (a no-op conversion).
Instead, the first element of the list is returned.
@Test
public void testListToObjectConversionBug() {
final DefaultConversionService conversionService = new DefaultConversionService();
final List<Object> raw = new ArrayList<Object>();
raw.add("one");
raw.add("two");
final Object converted = conversionService.convert(raw, Object.class);
Assert.assertSame(raw, converted);
}
Test Output: junit.framework.AssertionFailedError: expected same:<[one, two]> was not:<one>
Affects: 3.0 RC2
Metadata
Metadata
Assignees
Labels
in: coreIssues in core modules (aop, beans, core, context, expression)Issues in core modules (aop, beans, core, context, expression)type: bugA general bugA general bug