#360 - Removed test call to method only available on Spring 4.2.

This commit is contained in:
Oliver Gierke
2015-06-26 08:50:30 +02:00
parent 8bdc57ba89
commit 7c9d6bb655

View File

@@ -76,6 +76,5 @@ public class TypeConstrainedMappingJackson2HttpMessageConverterUnitTest {
private static void assertCanWrite(GenericHttpMessageConverter<Object> converter, Class<?> type, boolean expected) {
assertThat(converter.canWrite(type, APPLICATION_JSON), is(expected));
assertThat(converter.canWrite(type, type, APPLICATION_JSON), is(expected));
}
}