This is an automated email from the ASF dual-hosted git repository.

Fokko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-java.git


The following commit(s) were added to refs/heads/master by this push:
     new 5922bf431 Fix CI caused by a silent merge conflict (#3665)
5922bf431 is described below

commit 5922bf431d2ee6f656825b57eca82a5f5bf4967d
Author: Eduard Tudenhoefner <[email protected]>
AuthorDate: Tue Jul 14 13:45:22 2026 +0200

    Fix CI caused by a silent merge conflict (#3665)
---
 .../column/values/bitpacking/TestByteBitPacking512VectorLE.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/parquet-plugins/parquet-encoding-vector/src/test/java/org/apache/parquet/column/values/bitpacking/TestByteBitPacking512VectorLE.java
 
b/parquet-plugins/parquet-encoding-vector/src/test/java/org/apache/parquet/column/values/bitpacking/TestByteBitPacking512VectorLE.java
index 8122cbeb4..eb19890be 100644
--- 
a/parquet-plugins/parquet-encoding-vector/src/test/java/org/apache/parquet/column/values/bitpacking/TestByteBitPacking512VectorLE.java
+++ 
b/parquet-plugins/parquet-encoding-vector/src/test/java/org/apache/parquet/column/values/bitpacking/TestByteBitPacking512VectorLE.java
@@ -110,7 +110,7 @@ public class TestByteBitPacking512VectorLE {
         directBuffer.put(byteOutput);
         directBuffer.flip();
         unpackValuesUsingVectorByteBuffer(bitWidth, directBuffer, output);
-        assertArrayEquals(expected, output);
+        assertThat(output).isEqualTo(expected);
         Arrays.fill(output, 0);
       });
     }
@@ -138,7 +138,7 @@ public class TestByteBitPacking512VectorLE {
         // Read-only heap ByteBuffer (hasArray() returns false)
         ByteBuffer readOnlyBuffer = 
ByteBuffer.wrap(byteOutput).asReadOnlyBuffer();
         unpackValuesUsingVectorByteBuffer(bitWidth, readOnlyBuffer, output);
-        assertArrayEquals(expected, output);
+        assertThat(output).isEqualTo(expected);
         Arrays.fill(output, 0);
       });
     }

Reply via email to