summaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/search/dispatch/InterleavedSearchInvokerTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-search/src/test/java/com/yahoo/search/dispatch/InterleavedSearchInvokerTest.java')
-rw-r--r--container-search/src/test/java/com/yahoo/search/dispatch/InterleavedSearchInvokerTest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/container-search/src/test/java/com/yahoo/search/dispatch/InterleavedSearchInvokerTest.java b/container-search/src/test/java/com/yahoo/search/dispatch/InterleavedSearchInvokerTest.java
index 688cdffe22d..500201df26f 100644
--- a/container-search/src/test/java/com/yahoo/search/dispatch/InterleavedSearchInvokerTest.java
+++ b/container-search/src/test/java/com/yahoo/search/dispatch/InterleavedSearchInvokerTest.java
@@ -238,8 +238,8 @@ public class InterleavedSearchInvokerTest {
@Test
void requireThatTopKProbabilityOverrideIsDisabledOnContentSkew() throws IOException {
- Node node0 = new Node(0, "host0", 0);
- Node node1 = new Node(1, "host1", 0);
+ Node node0 = new Node("test", 0, "host0", 0);
+ Node node1 = new Node("test", 1, "host1", 0);
Group group = new Group(0, List.of(node0, node1));
node0.setActiveDocuments(1000000);
@@ -250,8 +250,8 @@ public class InterleavedSearchInvokerTest {
@Test
void requireThatTopKProbabilityOverrideIsDisabledOnLittleContent() throws IOException {
- Node node0 = new Node(0, "host0", 0);
- Node node1 = new Node(1, "host1", 0);
+ Node node0 = new Node("test", 0, "host0", 0);
+ Node node1 = new Node("test", 1, "host1", 0);
Group group = new Group(0, List.of(node0, node1));
node0.setActiveDocuments(10);