Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit 04e20ac

Browse files
committed
Fix: make testfoldername lowercase as well
1 parent 9587af0 commit 04e20ac

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

MathMLQueryGenerator.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
3-
<component name="NewModuleRootManager" inherit-compiler-output="false">
3+
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="false">
44
<output url="file://$MODULE_DIR$/target/classes" />
55
<output-test url="file://$MODULE_DIR$/target/test-classes" />
66
<content url="file://$MODULE_DIR$">

src/test/java/de/tuberlin/dima/schubotz/mathmlquerygenerator/XQueryGeneratorTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ private void runTestCollection(File dir) {
6666
}
6767

6868
public void testMwsConversion() {
69-
runTestCollection("de/tuberlin/dima/schubotz/MathMLQueryGenerator/mws");
69+
runTestCollection("de/tuberlin/dima/schubotz/mathmlquerygenerator/mws");
7070
}
7171

7272
public void testCmmlConversion() {
73-
runTestCollection("de/tuberlin/dima/schubotz/MathMLQueryGenerator/cmml");
73+
runTestCollection("de/tuberlin/dima/schubotz/mathmlquerygenerator/cmml");
7474
}
7575

7676
public void testHeaderAndFooter() throws Exception {
@@ -79,7 +79,7 @@ public void testHeaderAndFooter() throws Exception {
7979
"let $m := .";
8080
final String testFooter = "$x}\n" +
8181
"</result>";
82-
final String testInput = getFileContents("de/tuberlin/dima/schubotz/MathMLQueryGenerator/cmml/q1.xml");
82+
final String testInput = getFileContents("de/tuberlin/dima/schubotz/mathmlquerygenerator/cmml/q1.xml");
8383
final String expectedOutput = "declare default element namespace \"http://www.w3.org/1998/Math/MathML\";\n" +
8484
"<result>{\n" +
8585
"let $m := .for $x in $m//*:ci\n" +

0 commit comments

Comments
 (0)