@@ -51,23 +51,23 @@ public void testValidIntegralValuesWithoutJavaSemantics() {
51
51
}
52
52
}
53
53
54
- @ Test
55
- public void testWithLosslessNarrowing () {
56
- schemaValidatorsConfig .setLosslessNarrowing (true );
57
- assertSame (validValue , JsonType .INTEGER ,
58
- getValueNodeType (DecimalNode .valueOf (new BigDecimal ("1.0" )), schemaValidatorsConfig ));
54
+ // @Test
55
+ // public void testWithLosslessNarrowing() {
56
+ // schemaValidatorsConfig.setLosslessNarrowing(true);
57
+ // assertSame(validValue, JsonType.INTEGER,
58
+ // getValueNodeType(DecimalNode.valueOf(new BigDecimal("1.0")), schemaValidatorsConfig));
59
59
60
- assertSame (validValue , JsonType .NUMBER ,
61
- getValueNodeType (DecimalNode .valueOf (new BigDecimal ("1.5" )), schemaValidatorsConfig ));
62
- }
60
+ // assertSame(validValue, JsonType.NUMBER,
61
+ // getValueNodeType(DecimalNode.valueOf(new BigDecimal("1.5")), schemaValidatorsConfig));
62
+ // }
63
63
64
- @ Test
65
- public void testWithoutLosslessNarrowing () {
66
- schemaValidatorsConfig .setLosslessNarrowing (false );
67
- assertSame (validValue , JsonType .NUMBER ,
68
- getValueNodeType (DecimalNode .valueOf (new BigDecimal ("1.0" )), schemaValidatorsConfig ));
64
+ // @Test
65
+ // public void testWithoutLosslessNarrowing() {
66
+ // schemaValidatorsConfig.setLosslessNarrowing(false);
67
+ // assertSame(validValue, JsonType.NUMBER,
68
+ // getValueNodeType(DecimalNode.valueOf(new BigDecimal("1.0")), schemaValidatorsConfig));
69
69
70
- assertSame (validValue , JsonType .NUMBER ,
71
- getValueNodeType (DecimalNode .valueOf (new BigDecimal ("1.5" )), schemaValidatorsConfig ));
72
- }
70
+ // assertSame(validValue, JsonType.NUMBER,
71
+ // getValueNodeType(DecimalNode.valueOf(new BigDecimal("1.5")), schemaValidatorsConfig));
72
+ // }
73
73
}
0 commit comments