summaryrefslogtreecommitdiffstats
path: root/vespaclient-java/src/test/java/com/yahoo/vespavisit
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-08-04 14:41:49 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-08-04 14:41:49 +0000
commitf2fccce544576a28fa1078c5a497c0b65ea10781 (patch)
treec1ea9dda107a5ddedb909842f6d9331fe1fda557 /vespaclient-java/src/test/java/com/yahoo/vespavisit
parentdb49d6d264873e7faf0e5df0a6dec42cc94888e8 (diff)
Use named constants instead of strings sprinkled all over.
Diffstat (limited to 'vespaclient-java/src/test/java/com/yahoo/vespavisit')
-rw-r--r--vespaclient-java/src/test/java/com/yahoo/vespavisit/VdsVisitTestCase.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/vespaclient-java/src/test/java/com/yahoo/vespavisit/VdsVisitTestCase.java b/vespaclient-java/src/test/java/com/yahoo/vespavisit/VdsVisitTestCase.java
index d9efe2c5129..4c8fbb1beee 100644
--- a/vespaclient-java/src/test/java/com/yahoo/vespavisit/VdsVisitTestCase.java
+++ b/vespaclient-java/src/test/java/com/yahoo/vespavisit/VdsVisitTestCase.java
@@ -1,6 +1,7 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespavisit;
+import com.yahoo.document.fieldset.DocIdOnly;
import com.yahoo.document.select.parser.ParseException;
import com.yahoo.documentapi.*;
import com.yahoo.documentapi.messagebus.protocol.DocumentProtocol;
@@ -83,7 +84,7 @@ public class VdsVisitTestCase {
assertNotNull(params);
assertEquals(654321, allParams.getFullTimeout());
assertEquals(654321, params.getTimeoutMs());
- assertEquals("[id]", params.getFieldSet());
+ assertEquals(DocIdOnly.NAME, params.getFieldSet());
}
@Test
@@ -98,7 +99,7 @@ public class VdsVisitTestCase {
VisitorParameters params = allParams.getVisitorParameters();
assertNotNull(params);
- assertEquals("[id]", params.getFieldSet());
+ assertEquals(DocIdOnly.NAME, params.getFieldSet());
assertTrue(allParams.isPrintIdsOnly());
}
@@ -295,7 +296,7 @@ public class VdsVisitTestCase {
VisitorParameters params = allParams.getVisitorParameters();
assertNotNull(params);
assertEquals("foo", allParams.getStatisticsParts());
- assertEquals("[id]", params.getFieldSet());
+ assertEquals(DocIdOnly.NAME, params.getFieldSet());
assertEquals("CountVisitor", params.getVisitorLibrary());
}