diff --git a/org.springframework.core/src/test/java/org/springframework/core/convert/support/GenericTypeConverterTests.java b/org.springframework.core/src/test/java/org/springframework/core/convert/support/GenericTypeConverterTests.java index 43c8feb83db..e04520bf8d9 100644 --- a/org.springframework.core/src/test/java/org/springframework/core/convert/support/GenericTypeConverterTests.java +++ b/org.springframework.core/src/test/java/org/springframework/core/convert/support/GenericTypeConverterTests.java @@ -26,11 +26,10 @@ import java.util.LinkedList; import java.util.List; import java.util.Map; -import org.junit.Ignore; import org.junit.Test; import org.springframework.core.convert.ConversionFailedException; -import org.springframework.core.convert.TypeDescriptor; import org.springframework.core.convert.ConverterNotFoundException; +import org.springframework.core.convert.TypeDescriptor; import org.springframework.core.convert.converter.Converter; public class GenericTypeConverterTests { @@ -114,22 +113,6 @@ public class GenericTypeConverterTests { assertEquals(new Integer(3), result); } - @Test - @Ignore - public void convertNoSuperTargetType() { - converter.add(new Converter() { - public Integer convert(CharSequence source) throws Exception { - return Integer.valueOf(source.toString()); - } - }); - try { - converter.convert("3", Integer.class); - fail("Should have failed"); - } catch (ConverterNotFoundException e) { - - } - } - @Test public void convertObjectToPrimitive() { converter.add(new StringToInteger());