Skip to content

Commit e258ee6

Browse files
committed
uncomment section of test for #938
1 parent 1eb498e commit e258ee6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test/java/com/fasterxml/jackson/databind/type/RecursiveType938Test.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,12 @@ public void testRecursivePair() throws Exception
4747
assertNotNull(t);
4848
assertEquals(ImmutablePair.class, t.getRawClass());
4949

50-
/*
5150
List<ImmutablePair<String, Double>> list = new ArrayList<ImmutablePair<String, Double>>();
5251
list.add(ImmutablePair.of("Hello World!", 123d));
5352
String json = MAPPER.writeValueAsString(list);
53+
5454
assertNotNull(json);
55-
*/
55+
56+
// can not deserialize with current definition, however
5657
}
5758
}

0 commit comments

Comments
 (0)