Skip to content

Commit 519c544

Browse files
committed
Wrap over-long assertEquals line per spotless
1 parent c47d7b4 commit 519c544

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

parquet-column/src/test/java/org/apache/parquet/schema/TestPrimitiveComparator.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,9 @@ public void testInt96Comparator() {
348348
for (java.util.function.Function<Binary, Binary> fj : perturb) {
349349
Binary perturbedBi = fi.apply(bi);
350350
Binary perturbedBj = fj.apply(bj);
351-
assertEquals(Integer.compare(i, j), BINARY_AS_INT96_TIMESTAMP_COMPARATOR.compare(perturbedBi, perturbedBj));
351+
assertEquals(
352+
Integer.compare(i, j),
353+
BINARY_AS_INT96_TIMESTAMP_COMPARATOR.compare(perturbedBi, perturbedBj));
352354
}
353355
}
354356
}

0 commit comments

Comments
 (0)