File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/test/java/com/flagsmith/flagengine Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 4747 <lombok .version>1.18.34</lombok .version>
4848 <slf4j .version>1.7.30</slf4j .version>
4949 <maven .checkstyle.version>3.4.0</maven .checkstyle.version>
50- <junit .jupiter.version>5.9.2 </junit .jupiter.version>
50+ <junit .jupiter.version>5.14.0 </junit .jupiter.version>
5151 </properties >
5252
5353 <dependencies >
Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ public class EngineTest {
2727 private static Arguments engineTestDataFromFile (Path path ) {
2828 try (BufferedReader reader = Files .newBufferedReader (path )) {
2929 JsonNode root = mapper .readTree (reader );
30- return Arguments .of (
30+ return Arguments .argumentSet (
31+ path .getFileName ().toString (),
3132 mapper .treeToValue (root .get ("context" ), EvaluationContext .class ),
3233 mapper .treeToValue (root .get ("result" ), EvaluationResult .class ));
3334 } catch (IOException e ) {
You can’t perform that action at this time.
0 commit comments