aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/searchdefinition/derived/SimpleInheritTestCase.java
diff options
context:
space:
mode:
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");