Skip to content

Commit 6cf3099

Browse files
committed
remove debug printlines in test
1 parent 053267c commit 6cf3099

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

coral-schema/src/test/java/com/linkedin/coral/schema/avro/MergeHiveSchemaWithAvroTests.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -285,14 +285,6 @@ public void shouldHandleSingleElementUnionsInAllTypes() {
285285
Schema expected = avro;
286286

287287
Schema actual = merge(hive, avro);
288-
289-
System.out.println("\n=== INPUT AVRO SCHEMA ===");
290-
System.out.println(avro.toString(true));
291-
System.out.println("\n=== EXPECTED OUTPUT SCHEMA ===");
292-
System.out.println(expected.toString(true));
293-
System.out.println("\n=== ACTUAL OUTPUT SCHEMA ===");
294-
System.out.println(actual.toString(true));
295-
System.out.println("\n=== END ===\n");
296288

297289
assertSchema(expected, actual);
298290
}
@@ -331,14 +323,6 @@ public void shouldHandleSingleElementUnionsWithHiveUnionType() {
331323
Schema expected = avro;
332324

333325
Schema actual = merge(hive, avro);
334-
335-
System.out.println("\n=== INPUT AVRO SCHEMA (HiveUnionType test) ===");
336-
System.out.println(avro.toString(true));
337-
System.out.println("\n=== EXPECTED OUTPUT SCHEMA (HiveUnionType test) ===");
338-
System.out.println(expected.toString(true));
339-
System.out.println("\n=== ACTUAL OUTPUT SCHEMA (HiveUnionType test) ===");
340-
System.out.println(actual.toString(true));
341-
System.out.println("\n=== END ===\n");
342326

343327
assertSchema(expected, actual);
344328
}

0 commit comments

Comments
 (0)