Skip to content

Commit 0223303

Browse files
committed
update
1 parent ace42fd commit 0223303

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

parquet-avro/src/test/java/org/apache/parquet/avro/TestAvroSchemaConverter.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -613,15 +613,16 @@ public void testMultipleInt96FieldsToStringConversion() throws Exception {
613613
Schema avroSchema = converter.convert(int96Schema);
614614

615615
String schemaString = avroSchema.toString(true);
616-
System.out.println("Generated Avro schema:");
617-
System.out.println(schemaString);
618616

619-
Assert.assertTrue("First field should have full timestamp_1 definition",
617+
Assert.assertTrue(
618+
"First field should have full timestamp_1 definition",
620619
schemaString.contains("\"name\" : \"timestamp_1\""));
621-
Assert.assertTrue("Second field should have full timestamp_2 definition",
620+
Assert.assertTrue(
621+
"Second field should have full timestamp_2 definition",
622622
schemaString.contains("\"name\" : \"timestamp_2\""));
623623

624-
Assert.assertFalse("Should not reference bare 'INT96' type anymore",
624+
Assert.assertFalse(
625+
"Should not reference bare 'INT96' type anymore",
625626
schemaString.contains("\"type\" : [ \"null\", \"INT96\" ]"));
626627
}
627628

0 commit comments

Comments
 (0)