Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Christoph Strobl opened SPR-11608 and commented
The following conversion works in 4.0.2 but fails in 4.0.3.
4.0.2
4.0.3
@Test public void multidimensionalArrayToListConversionShouldConvertEntriesCorrectly() { String[][] grid = new String[][] { new String[] { "1", "2", "3", "4" }, new String[] { "5", "6", "7", "8" }, new String[] { "9", "10", "11", "12" } }; ConversionService conversionService = ConversionServiceFactory.createDefaultConversionService(); List<String[]> converted = conversionService.convert(grid, List.class); String[][] convertedBack = conversionService.convert(converted, String[][].class); Assert.assertArrayEquals(grid, convertedBack); }
Affects: 4.0.3
Referenced from: commits 5c9fc09, b9bac1d
The text was updated successfully, but these errors were encountered:
Juergen Hoeller commented
Fixed through relaxing that recently modified assertion in getElementTypeDescriptor...
Juergen
Sorry, something went wrong.
jhoeller
No branches or pull requests
Christoph Strobl opened SPR-11608 and commented
The following conversion works in
4.0.2
but fails in4.0.3
.Affects: 4.0.3
Referenced from: commits 5c9fc09, b9bac1d
The text was updated successfully, but these errors were encountered: