Skip to content

Commit 6ef38af

Browse files
Merge pull request #101 from sanctuuary/fix_tests
Fix tests
2 parents 53ecc8b + ef86ae1 commit 6ef38af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/mvnbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
cd domain-annotations/WombatP_tools
4040
java -jar ../../target/APE-*-executable.jar ./config.json
4141
cd ./CWL
42-
cwltool --enable-dev --validate workflowSolution_0.cwl
42+
cwltool --enable-dev --validate candidate_solution_1.cwl
4343
4444
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
4545
- name: Update dependency graph

src/test/java/nl/uu/cs/ape/test/sat/ape/UseCaseTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ void testUseCase(String name, String evaluationPath)
155155
assertEquals(1,
156156
Stream.of(files).filter(file -> file.getName().startsWith("input.yml")).count());
157157
for (File f : files) {
158-
assertTrue(f.getName().startsWith("workflowSolution_") || f.getName().startsWith("input.yml"));
158+
assertTrue(f.getName().startsWith("candidate_solution_") || f.getName().startsWith("input.yml"));
159159
}
160160
success("All %s expected CWL files were generated", mutation.number_of_cwl_files);
161161
}

0 commit comments

Comments
 (0)