File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
parquet-avro/src/test/java/org/apache/parquet/avro Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments