aboutsummaryrefslogtreecommitdiffstats
path: root/predicate-search/src/test/java/com/yahoo/search/predicate/index/IntervalPostingListTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'predicate-search/src/test/java/com/yahoo/search/predicate/index/IntervalPostingListTest.java')
-rw-r--r--predicate-search/src/test/java/com/yahoo/search/predicate/index/IntervalPostingListTest.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/predicate-search/src/test/java/com/yahoo/search/predicate/index/IntervalPostingListTest.java b/predicate-search/src/test/java/com/yahoo/search/predicate/index/IntervalPostingListTest.java
index 8b2a5cc1d7e..26f191e13b6 100644
--- a/predicate-search/src/test/java/com/yahoo/search/predicate/index/IntervalPostingListTest.java
+++ b/predicate-search/src/test/java/com/yahoo/search/predicate/index/IntervalPostingListTest.java
@@ -4,7 +4,8 @@ package com.yahoo.search.predicate.index;
import com.yahoo.search.predicate.SubqueryBitmap;
import org.junit.jupiter.api.Test;
-import java.util.Arrays;
+
+import java.util.List;
import static org.junit.jupiter.api.Assertions.*;
@@ -13,9 +14,9 @@ public class IntervalPostingListTest {
@Test
void requireThatPostingListCanIterate() {
PredicateIntervalStore.Builder builder = new PredicateIntervalStore.Builder();
- int ref1 = builder.insert(Arrays.asList(0x1ffff));
- int ref2 = builder.insert(Arrays.asList(0x1ffff));
- int ref3 = builder.insert(Arrays.asList(0x10001, 0x2ffff));
+ int ref1 = builder.insert(List.of(0x1ffff));
+ int ref2 = builder.insert(List.of(0x1ffff));
+ int ref3 = builder.insert(List.of(0x10001, 0x2ffff));
IntervalPostingList postingList = new IntervalPostingList(
builder.build(), new int[]{2, 4, 6}, new int[]{ref1, ref2, ref3}, SubqueryBitmap.ALL_SUBQUERIES);
assertEquals(-1, postingList.getDocId());