Skip to content

Commit 5555982

Browse files
committed
Remove debug output from Avro tests
1 parent 4847848 commit 5555982

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

avro/src/test/java/tools/jackson/dataformat/avro/BigDecimal_schemaCreationTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)