summaryrefslogtreecommitdiffstats
path: root/document
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2023-02-21 11:50:07 +0100
committerJon Bratseth <bratseth@gmail.com>2023-02-21 11:50:07 +0100
commit242ac24533e49c8a84b2314aa432c85980956696 (patch)
tree6a6026c23804f7609829c733d7ee4ee0c9bc1e60 /document
parent813df553bcf33a6fe161a22b6f6b93b2780308b5 (diff)
Tune cluster controller memory
- Change from 7 to 6 cluster controllers per host - Correct real memory limit for admin - Test admin provisioning
Diffstat (limited to 'document')
-rw-r--r--document/src/test/java/com/yahoo/document/select/DocumentSelectorTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/document/src/test/java/com/yahoo/document/select/DocumentSelectorTestCase.java b/document/src/test/java/com/yahoo/document/select/DocumentSelectorTestCase.java
index b7a3589a4d0..4c4d9c78c8e 100644
--- a/document/src/test/java/com/yahoo/document/select/DocumentSelectorTestCase.java
+++ b/document/src/test/java/com/yahoo/document/select/DocumentSelectorTestCase.java
@@ -775,7 +775,7 @@ public class DocumentSelectorTestCase {
@Test
public void testInheritance() throws ParseException {
- var s=new DocumentSelector("parent.parentField = \"parentValue\"");
+ new DocumentSelector("parent.parentField = \"parentValue\"");
List<DocumentPut> documents = createDocs();
assertEquals(Result.TRUE, evaluate("test", documents.get(0)));
assertEquals("Matching on type is exact", Result.FALSE, evaluate("parent", documents.get(0)));