DATACOUCH-11 - Upgrading Jackson to the last stable release

This commit is contained in:
Michael Nitschinger
2013-06-03 13:41:59 +02:00
committed by Oliver Gierke
parent 407adf96df
commit afab31ff2f
5 changed files with 16 additions and 13 deletions

View File

@@ -139,8 +139,8 @@ public class CouchbaseTemplateTest {
template.save(complex);
String expected = "{\"info1\":{\"foo\":true,\"bar\":false},\"votes\":[],"
+ "\"firstnames\":[\"Michael\",\"Thomas\"],\"info2\":{}}";
String expected = "{\"firstnames\":[\"Michael\",\"Thomas\"],\"info2\":{}," +
"\"info1\":{\"foo\":true,\"bar\":false},\"votes\":[]}";
assertEquals(expected, client.get(id));
ComplexPerson response = template.findById(id, ComplexPerson.class);