summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/searchdefinition/SearchImporterTestCase.java
diff options
context:
space:
mode:
authorArne Juul <arnej@yahoo-inc.com>2018-10-29 10:17:30 +0000
committergjoranv <gv@oath.com>2019-01-21 15:09:24 +0100
commita6505c115457b87884fe2132b83afc352e8af31a (patch)
tree0e5abd0690eca4c3159412e55851d84b7af8de29 /config-model/src/test/java/com/yahoo/searchdefinition/SearchImporterTestCase.java
parentb82f37f83b8cfdf562160065cb14f0454b3d0cc0 (diff)
remove "header" and "body" keywords
Diffstat (limited to 'config-model/src/test/java/com/yahoo/searchdefinition/SearchImporterTestCase.java')
-rw-r--r--config-model/src/test/java/com/yahoo/searchdefinition/SearchImporterTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-model/src/test/java/com/yahoo/searchdefinition/SearchImporterTestCase.java b/config-model/src/test/java/com/yahoo/searchdefinition/SearchImporterTestCase.java
index 0c464d668f7..8066f41537f 100644
--- a/config-model/src/test/java/com/yahoo/searchdefinition/SearchImporterTestCase.java
+++ b/config-model/src/test/java/com/yahoo/searchdefinition/SearchImporterTestCase.java
@@ -107,7 +107,7 @@ public class SearchImporterTestCase extends SearchDefinitionTestCase {
field= search.getConcreteField("categories");
assertEquals("{ input categories_src | lowercase | normalize | tokenize normalize stem:\"SHORTEST\" | index categories; }",
field.getIndexingScript().toString());
- assertTrue(!field.isHeader());
+ assertTrue(field.isHeader());
// Eight field
field= search.getConcreteField("categoriesagain");