aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/searchdefinition/derived/SimpleInheritTestCase.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-01-25 09:50:28 +0100
committerJon Bratseth <bratseth@gmail.com>2022-01-25 09:50:28 +0100
commitb7a8165a120311fdafe2f09a1cd39d8621c8891b (patch)
tree56b823acbea42edd5d2650b2aff4cbd04971040f /config-model/src/test/java/com/yahoo/searchdefinition/derived/SimpleInheritTestCase.java
parent46be850bd8ecd8b38b4d54fa5f4bbeeef0997a2a (diff)
Simplify
Diffstat (limited to 'config-model/src/test/java/com/yahoo/searchdefinition/derived/SimpleInheritTestCase.java')
-rw-r--r--config-model/src/test/java/com/yahoo/searchdefinition/derived/SimpleInheritTestCase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-model/src/test/java/com/yahoo/searchdefinition/derived/SimpleInheritTestCase.java b/config-model/src/test/java/com/yahoo/searchdefinition/derived/SimpleInheritTestCase.java
index 8a4e403072b..8d5ee7e5405 100644
--- a/config-model/src/test/java/com/yahoo/searchdefinition/derived/SimpleInheritTestCase.java
+++ b/config-model/src/test/java/com/yahoo/searchdefinition/derived/SimpleInheritTestCase.java
@@ -20,8 +20,8 @@ public class SimpleInheritTestCase extends AbstractExportingTestCase {
final String expectedResultsDirName = "src/test/derived/" + name + "/";
ApplicationBuilder builder = new ApplicationBuilder();
- builder.addSchemaFile(expectedResultsDirName + "parent.sd");
- builder.addSchemaFile(expectedResultsDirName + "child.sd");
+ builder.add(expectedResultsDirName + "parent.sd");
+ builder.add(expectedResultsDirName + "child.sd");
builder.build();
Schema schema = builder.getSchema("child");