summaryrefslogtreecommitdiffstats
path: root/configgen/src/test/java/com/yahoo/config/codegen/DefParserTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'configgen/src/test/java/com/yahoo/config/codegen/DefParserTest.java')
-rw-r--r--configgen/src/test/java/com/yahoo/config/codegen/DefParserTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/configgen/src/test/java/com/yahoo/config/codegen/DefParserTest.java b/configgen/src/test/java/com/yahoo/config/codegen/DefParserTest.java
index 1c381e7c398..8e52c1b4ece 100644
--- a/configgen/src/test/java/com/yahoo/config/codegen/DefParserTest.java
+++ b/configgen/src/test/java/com/yahoo/config/codegen/DefParserTest.java
@@ -20,7 +20,7 @@ import java.io.*;
public class DefParserTest {
private static final String TEST_DIR = "target/test-classes/";
- private static final String DEF_NAME = TEST_DIR + "allfeatures.def";
+ private static final String DEF_NAME = TEST_DIR + "configgen.allfeatures.def";
@Test
public void testTraverseTree() throws IOException {
@@ -61,7 +61,7 @@ public class DefParserTest {
@Test
public void testFileWithNamespaceInFilename() throws IOException {
- File defFile = new File(TEST_DIR + "bar.foo.def");
+ File defFile = new File(TEST_DIR + "baz.bar.foo.def");
CNode root = new DefParser("test", new FileReader(defFile)).getTree();
assertThat(root.defMd5, is("31a0f9bda0e5ff929762a29569575a7e"));
}