Skip to content

Commit f2f7936

Browse files
committed
update java dependency and fix method name
1 parent e40fdc6 commit f2f7936

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<dependency>
5757
<groupId>io.cucumber</groupId>
5858
<artifactId>query</artifactId>
59-
<version>[12.2.0,13.0.0)</version>
59+
<version>[13.0.0,14.0.0)</version>
6060
</dependency>
6161

6262
<dependency>

java/src/main/java/io/cucumber/junitxmlformatter/XmlReportData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ List<TestCaseStarted> getAllTestCaseStarted() {
119119
private static final TestStepResult SCENARIO_WITH_NO_STEPS = new TestStepResult(ZERO_DURATION, null, PASSED, null);
120120

121121
TestStepResult getTestCaseStatus(TestCaseStarted testCaseStarted) {
122-
return query.findMostSevereTestStepResulBy(testCaseStarted)
122+
return query.findMostSevereTestStepResultBy(testCaseStarted)
123123
.orElse(SCENARIO_WITH_NO_STEPS);
124124
}
125125

0 commit comments

Comments
 (0)