Skip to content

Commit

Permalink
Merge pull request #101 from sanctuuary/fix_tests
Browse files Browse the repository at this point in the history
Fix tests
  • Loading branch information
vedran-kasalica authored Nov 22, 2023
2 parents 53ecc8b + ef86ae1 commit 6ef38af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mvnbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
cd domain-annotations/WombatP_tools
java -jar ../../target/APE-*-executable.jar ./config.json
cd ./CWL
cwltool --enable-dev --validate workflowSolution_0.cwl
cwltool --enable-dev --validate candidate_solution_1.cwl
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/nl/uu/cs/ape/test/sat/ape/UseCaseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ void testUseCase(String name, String evaluationPath)
assertEquals(1,
Stream.of(files).filter(file -> file.getName().startsWith("input.yml")).count());
for (File f : files) {
assertTrue(f.getName().startsWith("workflowSolution_") || f.getName().startsWith("input.yml"));
assertTrue(f.getName().startsWith("candidate_solution_") || f.getName().startsWith("input.yml"));
}
success("All %s expected CWL files were generated", mutation.number_of_cwl_files);
}
Expand Down

0 comments on commit 6ef38af

Please sign in to comment.