We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 513adab commit 2cfda73Copy full SHA for 2cfda73
eclipse-collections/src/test/java/com/fasterxml/jackson/datatype/eclipsecollections/DeserializerTest.java
@@ -645,7 +645,7 @@ public void pairTyped() throws Exception {
645
final String actJson = mapper.writerFor(new TypeReference<ObjectIntPair<A>>() {})
646
.writeValueAsString(pair);
647
String expJson = "{\"one\":{\"@c\":\".DeserializerTest$B\"},\"two\":5}";
648
- Assert.assertEquals(expJson, actJson);
+ Assert.assertEquals(mapper.readTree(expJson), mapper.readTree(actJson));
649
Assert.assertEquals(pair,
650
mapper.readValue(actJson, new TypeReference<ObjectIntPair<A>>() {})
651
);
0 commit comments