aboutsummaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-04-20 11:05:21 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-04-20 11:05:21 +0200
commitfb3610d6c02de6393ee5f258c329c4e56f55cc65 (patch)
treef7d05a036a835a8a45093ffeae9ead28c00bd35e /config-model
parentc3b41673317f4871286272d3e143a6029b821fe9 (diff)
break long line for readability
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/test/java/com/yahoo/vespa/model/search/test/DocumentDatabaseTestCase.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/config-model/src/test/java/com/yahoo/vespa/model/search/test/DocumentDatabaseTestCase.java b/config-model/src/test/java/com/yahoo/vespa/model/search/test/DocumentDatabaseTestCase.java
index 29ff68cbac8..9cf99dc5c9f 100644
--- a/config-model/src/test/java/com/yahoo/vespa/model/search/test/DocumentDatabaseTestCase.java
+++ b/config-model/src/test/java/com/yahoo/vespa/model/search/test/DocumentDatabaseTestCase.java
@@ -255,17 +255,20 @@ public class DocumentDatabaseTestCase {
public void testThatAttributesConfigIsProducedForIndexed() {
Map<String, List<String>> expectedAttributesMap = new HashMap<>();
expectedAttributesMap.put("type1", Arrays.asList("f2"));
- assertAttributesConfigIndependentOfMode("index", Arrays.asList("type1"), Arrays.asList("test/search/cluster.test/type1"), expectedAttributesMap);
+ assertAttributesConfigIndependentOfMode("index", Arrays.asList("type1"),
+ Arrays.asList("test/search/cluster.test/type1"), expectedAttributesMap);
}
@Test
public void testThatAttributesConfigIsProducedForStreamingForFastAccessFields() {
Map<String, List<String>> expectedAttributesMap = new HashMap<>();
expectedAttributesMap.put("type1", Arrays.asList("f2"));
- assertAttributesConfigIndependentOfMode("streaming", Arrays.asList("type1"), Arrays.asList("test/search/cluster.test.type1/type1"), expectedAttributesMap);
+ assertAttributesConfigIndependentOfMode("streaming", Arrays.asList("type1"),
+ Arrays.asList("test/search/cluster.test.type1/type1"), expectedAttributesMap);
}
@Test
public void testThatAttributesConfigIsNotProducedForStoreOnlyEvenForFastAccessFields() {
- assertAttributesConfigIndependentOfMode("store-only", Arrays.asList("type1"), Arrays.asList("test/search"), Collections.emptyMap());
+ assertAttributesConfigIndependentOfMode("store-only", Arrays.asList("type1"),
+ Arrays.asList("test/search"), Collections.emptyMap());
}
}