Skip to content

Commit 4e7d83c

Browse files
committed
uncomment workaround from failing tests
1 parent 57de661 commit 4e7d83c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/test/java/com/fasterxml/jackson/failing/JDKNumberDeser2644Test.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ public void setVal(BigDecimal val) {
3939
public void testBigDecimalSubtypes() throws Exception
4040
{
4141
ObjectMapper mapper = newJsonMapper();
42-
mapper.enable(DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS);
42+
43+
// NOTE: uncommenting this does work around the issue:
44+
// mapper.enable(DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS);
4345
mapper.registerSubtypes(NodeParent2644.class);
4446

4547
NodeRoot2644 root = mapper.readValue(

0 commit comments

Comments
 (0)