summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2021-12-09 22:04:24 +0100
committerJon Bratseth <bratseth@gmail.com>2021-12-09 22:04:24 +0100
commit9712b54640a3d29c62ed51432272adfe21395c21 (patch)
tree49f7995776ca66197f95fad5d98eff7b7bce0a01 /config-model
parentb05f875155039daaf1ab82cefc1764bc3bf57326 (diff)
Remove unnecessary parameter
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/test/java/com/yahoo/vespa/model/application/validation/change/search/AttributeChangeValidatorTest.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/config-model/src/test/java/com/yahoo/vespa/model/application/validation/change/search/AttributeChangeValidatorTest.java b/config-model/src/test/java/com/yahoo/vespa/model/application/validation/change/search/AttributeChangeValidatorTest.java
index bc5821f3c6f..3cfde4c4d19 100644
--- a/config-model/src/test/java/com/yahoo/vespa/model/application/validation/change/search/AttributeChangeValidatorTest.java
+++ b/config-model/src/test/java/com/yahoo/vespa/model/application/validation/change/search/AttributeChangeValidatorTest.java
@@ -215,8 +215,7 @@ public class AttributeChangeValidatorTest {
try {
new Fixture("field f1 type tensor(x[10]) { indexing: attribute \n attribute: paged }",
"field f1 type tensor(x[10]) { indexing: attribute }").
- assertValidation(newRestartAction(ClusterSpec.Id.from("test"),
- "Field 'f1' changed: add attribute 'huge'"));
+ assertValidation();
fail("Expected exception on removal of 'paged'");
}
catch (ValidationOverrides.ValidationException e) {