This is an automated email from the ASF dual-hosted git repository.
capistrant pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new 911379d61a3 fix new test accidentally mixing junit4 and 5 (#19082)
911379d61a3 is described below
commit 911379d61a308a005284675a49a2d3f7ec3cddd3
Author: Clint Wylie <[email protected]>
AuthorDate: Wed Mar 4 07:08:13 2026 -0800
fix new test accidentally mixing junit4 and 5 (#19082)
---
.../segment/nested/NestedDataColumnSupplierEmptyFieldsBugTest.java | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git
a/processing/src/test/java/org/apache/druid/segment/nested/NestedDataColumnSupplierEmptyFieldsBugTest.java
b/processing/src/test/java/org/apache/druid/segment/nested/NestedDataColumnSupplierEmptyFieldsBugTest.java
index 25ad0281862..84af1fa9c1e 100644
---
a/processing/src/test/java/org/apache/druid/segment/nested/NestedDataColumnSupplierEmptyFieldsBugTest.java
+++
b/processing/src/test/java/org/apache/druid/segment/nested/NestedDataColumnSupplierEmptyFieldsBugTest.java
@@ -31,10 +31,9 @@ import org.apache.druid.segment.column.ColumnHolder;
import org.apache.druid.segment.vector.VectorCursor;
import org.apache.druid.segment.vector.VectorObjectSelector;
import org.apache.druid.segment.virtual.NestedFieldVirtualColumn;
-import org.junit.Assert;
-import org.junit.Test;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;
import java.io.File;
@@ -72,9 +71,9 @@ public class NestedDataColumnSupplierEmptyFieldsBugTest
try (Closer closer = Closer.create()) {
QueryableIndex theIndex =
closer.register(TestHelper.getTestIndexIO().loadIndex(tempDir));
ColumnHolder columnHolder = theIndex.getColumnHolder("obj");
- Assert.assertNotNull(columnHolder);
+ Assertions.assertNotNull(columnHolder);
NestedDataColumnV5<?, ?> v5 = closer.register((NestedDataColumnV5<?, ?>)
columnHolder.getColumn());
- Assert.assertNotNull(v5);
+ Assertions.assertNotNull(v5);
NestedFieldVirtualColumn vc1 = new NestedFieldVirtualColumn(
"obj",
"$[''].a",
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]