Skip to content

Commit 514c7c7

Browse files
Updated dependencies and tests
1 parent 91f969a commit 514c7c7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
<dependency>
147147
<groupId>org.apache.commons</groupId>
148148
<artifactId>commons-lang3</artifactId>
149-
<version>3.12.0</version>
149+
<version>3.13.0</version>
150150
</dependency>
151151
<dependency>
152152
<groupId>org.apache.logging.log4j</groupId>
@@ -162,13 +162,13 @@
162162
<dependency>
163163
<groupId>org.json</groupId>
164164
<artifactId>json</artifactId>
165-
<version>20230227</version>
165+
<version>20230618</version>
166166
</dependency>
167167
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
168168
<dependency>
169169
<groupId>org.junit.jupiter</groupId>
170170
<artifactId>junit-jupiter-api</artifactId>
171-
<version>5.8.2</version>
171+
<version>5.10.0</version>
172172
<scope>test</scope>
173173
</dependency>
174174
<dependency>
@@ -185,7 +185,7 @@
185185
<dependency>
186186
<groupId>org.antlr</groupId>
187187
<artifactId>antlr4-runtime</artifactId>
188-
<version>4.12.0</version>
188+
<version>4.13.0</version>
189189
</dependency>
190190
<dependency>
191191
<groupId>org.yaml</groupId>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,10 @@ void testUseCase(String name, String evaluationPath)
152152
assertNotNull(files);
153153
assertEquals(mutation.number_of_cwl_files,
154154
Stream.of(files).filter(file -> file.getName().endsWith(".cwl")).count());
155-
assertEquals(mutation.number_of_cwl_files,
156-
Stream.of(files).filter(file -> file.getName().endsWith("inp.yml")).count());
155+
assertEquals(1,
156+
Stream.of(files).filter(file -> file.getName().startsWith("input.yml")).count());
157157
for (File f : files) {
158-
assertTrue(f.getName().startsWith("workflowSolution_"));
158+
assertTrue(f.getName().startsWith("workflowSolution_") || 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)