File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
src/test/java/nl/uu/cs/ape/test/sat/ape Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 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 >
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 >
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 >
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments