File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
avro/src/test/java/tools/jackson/dataformat/avro Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public void testSchemaCreation_withLogicalTypesDisabled_onBigDecimalWithAvroDeci
4242 // because logical types are disabled by default.
4343 final Schema actualSchema = gen .getGeneratedSchema ().getAvroSchema ();
4444
45- System .out .println (BigDecimalWithAvroDecimalAnnotationWrapper .class .getSimpleName () + " schema:" + actualSchema .toString (true ));
45+ // System.out.println(BigDecimalWithAvroDecimalAnnotationWrapper.class.getSimpleName() + " schema:" + actualSchema.toString(true));
4646
4747 // THEN
4848 assertThat (actualSchema .getField ("bigDecimalValue" )).isNotNull ();
@@ -64,7 +64,7 @@ public void testSchemaCreation_withLogicalTypesEnabled_onBigDecimalWithAvroDecim
6464 MAPPER .acceptJsonFormatVisitor (BigDecimalWithAvroDecimalAnnotationWrapper .class , gen );
6565 final Schema actualSchema = gen .getGeneratedSchema ().getAvroSchema ();
6666
67- System .out .println (BigDecimalWithAvroDecimalAnnotationWrapper .class .getSimpleName () + " schema:" + actualSchema .toString (true ));
67+ // System.out.println(BigDecimalWithAvroDecimalAnnotationWrapper.class.getSimpleName() + " schema:" + actualSchema.toString(true));
6868
6969 // THEN
7070 assertThat (actualSchema .getField ("bigDecimalValue" )).isNotNull ();
@@ -97,7 +97,7 @@ public void testSchemaCreation_withLogicalTypesEnabled_onBigDecimalWithAvroDecim
9797 MAPPER .acceptJsonFormatVisitor (BigDecimalWithAvroDecimalAnnotationToFixedWrapper .class , gen );
9898 final Schema actualSchema = gen .getGeneratedSchema ().getAvroSchema ();
9999
100- System .out .println (BigDecimalWithAvroDecimalAnnotationToFixedWrapper .class .getSimpleName () + " schema:" + actualSchema .toString (true ));
100+ // System.out.println(BigDecimalWithAvroDecimalAnnotationToFixedWrapper.class.getSimpleName() + " schema:" + actualSchema.toString(true));
101101
102102 // THEN
103103 assertThat (actualSchema .getField ("bigDecimalValue" )).isNotNull ();
You can’t perform that action at this time.
0 commit comments