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-24 23:42:43 +0100
committerJon Bratseth <bratseth@gmail.com>2022-01-24 23:42:43 +0100
commit8295de0768bcd6cfedab5a0767fe871fb6520dd7 (patch)
treeb8763e11894db51ae97ec7c89139ddb2eb6cfb11 /config-model/src/test/java/com/yahoo/searchdefinition/derived/SimpleInheritTestCase.java
parentdf48a11149e18d588f696ee6b867e9351ea90ea1 (diff)
SchemaBuilder -> ApplicationBuilder
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 3f6e0f3e0d7..8a4e403072b 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
@@ -2,7 +2,7 @@
package com.yahoo.searchdefinition.derived;
import com.yahoo.searchdefinition.Schema;
-import com.yahoo.searchdefinition.ApoplicationBuilder;
+import com.yahoo.searchdefinition.ApplicationBuilder;
import com.yahoo.searchdefinition.parser.ParseException;
import org.junit.Test;
@@ -19,7 +19,7 @@ public class SimpleInheritTestCase extends AbstractExportingTestCase {
String name = "emptychild";
final String expectedResultsDirName = "src/test/derived/" + name + "/";
- ApoplicationBuilder builder = new ApoplicationBuilder();
+ ApplicationBuilder builder = new ApplicationBuilder();
builder.addSchemaFile(expectedResultsDirName + "parent.sd");
builder.addSchemaFile(expectedResultsDirName + "child.sd");
builder.build();