summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahooinc.com>2022-03-23 10:58:21 +0000
committerArne H Juul <arnej@yahooinc.com>2022-03-23 10:58:21 +0000
commit237ab6f9e8123ce79a86534d6a9aa1488cf967fa (patch)
treefe2beb00e2be2bc72de42c2c912abe42de07d241 /config-model
parent2c584d7918b14c57e204f5f117b890cd6b1f280e (diff)
track toString() update
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/test/java/com/yahoo/searchdefinition/parser/IntermediateParserTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-model/src/test/java/com/yahoo/searchdefinition/parser/IntermediateParserTestCase.java b/config-model/src/test/java/com/yahoo/searchdefinition/parser/IntermediateParserTestCase.java
index 8bd04af8c54..36a72381156 100644
--- a/config-model/src/test/java/com/yahoo/searchdefinition/parser/IntermediateParserTestCase.java
+++ b/config-model/src/test/java/com/yahoo/searchdefinition/parser/IntermediateParserTestCase.java
@@ -69,7 +69,7 @@ public class IntermediateParserTestCase {
" }",
"}");
var e = assertThrows(IllegalArgumentException.class, () -> parseString(input));
- assertEquals("schema 'foo' error: already has document foo so cannot add document foo2", e.getMessage());
+ assertEquals("schema 'foo' error: already has document 'foo' so cannot add document 'foo2'", e.getMessage());
}
void checkFileParses(String fileName) throws Exception {