summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/searchdefinition/processing/TensorFieldTestCase.java
diff options
context:
space:
mode:
authorJon Bratseth <jonbratseth@yahoo.com>2017-01-12 21:48:54 +0100
committerGitHub <noreply@github.com>2017-01-12 21:48:54 +0100
commitc10677061733478b8e4028fafc68f05972877643 (patch)
treefd8ea0f55ec4a17feff93139238a435ddf7715ac /config-model/src/test/java/com/yahoo/searchdefinition/processing/TensorFieldTestCase.java
parent08fbcebedf2c2bd78c13727fb91cc25b9b196c2f (diff)
Revert "Bratseth/tensor type info in documents"
Diffstat (limited to 'config-model/src/test/java/com/yahoo/searchdefinition/processing/TensorFieldTestCase.java')
-rw-r--r--config-model/src/test/java/com/yahoo/searchdefinition/processing/TensorFieldTestCase.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/config-model/src/test/java/com/yahoo/searchdefinition/processing/TensorFieldTestCase.java b/config-model/src/test/java/com/yahoo/searchdefinition/processing/TensorFieldTestCase.java
index 0007019e6b4..ecadf8e1b71 100644
--- a/config-model/src/test/java/com/yahoo/searchdefinition/processing/TensorFieldTestCase.java
+++ b/config-model/src/test/java/com/yahoo/searchdefinition/processing/TensorFieldTestCase.java
@@ -19,28 +19,28 @@ public class TensorFieldTestCase {
public void requireThatTensorFieldCannotBeOfCollectionType() throws ParseException {
exception.expect(IllegalArgumentException.class);
exception.expectMessage("For search 'test', field 'f1': A field with collection type of tensor is not supported. Use simple type 'tensor' instead.");
- SearchBuilder.createFromString(getSd("field f1 type array<tensor(x{})> {}"));
+ SearchBuilder.createFromString(getSd("field f1 type array<tensor> {}"));
}
@Test
public void requireThatTensorFieldCannotBeIndexField() throws ParseException {
exception.expect(IllegalArgumentException.class);
exception.expectMessage("For search 'test', field 'f1': A field of type 'tensor' cannot be specified as an 'index' field.");
- SearchBuilder.createFromString(getSd("field f1 type tensor(x{}) { indexing: index }"));
+ SearchBuilder.createFromString(getSd("field f1 type tensor { indexing: index }"));
}
@Test
public void requireThatTensorAttributeCannotBeFastSearch() throws ParseException {
exception.expect(IllegalArgumentException.class);
exception.expectMessage("For search 'test', field 'f1': An attribute of type 'tensor' cannot be 'fast-search'.");
- SearchBuilder.createFromString(getSd("field f1 type tensor(x{}) { indexing: attribute \n attribute: fast-search }"));
+ SearchBuilder.createFromString(getSd("field f1 type tensor { indexing: attribute \n attribute: fast-search }"));
}
@Test
public void requireThatIllegalTensorTypeSpecThrowsException() throws ParseException {
exception.expect(IllegalArgumentException.class);
exception.expectMessage("For attribute field 'f1': Illegal tensor type spec: Failed parsing element 'invalid' in type spec 'tensor(invalid)'");
- SearchBuilder.createFromString(getSd("field f1 type tensor(x{}) { indexing: attribute \n attribute: tensor(invalid) }"));
+ SearchBuilder.createFromString(getSd("field f1 type tensor { indexing: attribute \n attribute: tensor(invalid) }"));
}
private static String getSd(String field) {