We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0546fd commit 2e5694fCopy full SHA for 2e5694f
cucumber-core/src/main/java/io/cucumber/core/plugin/RerunFormatter.java
@@ -11,7 +11,7 @@
11
import java.net.URI;
12
import java.util.ArrayList;
13
import java.util.Collection;
14
-import java.util.HashMap;
+import java.util.LinkedHashMap;
15
import java.util.Map;
16
17
import static io.cucumber.core.feature.FeatureWithLines.create;
@@ -24,7 +24,7 @@
24
public final class RerunFormatter implements ConcurrentEventListener {
25
26
private final UTF8PrintWriter out;
27
- private final Map<URI, Collection<Integer>> featureAndFailedLinesMapping = new HashMap<>();
+ private final Map<URI, Collection<Integer>> featureAndFailedLinesMapping = new LinkedHashMap<>();
28
29
public RerunFormatter(OutputStream out) {
30
this.out = new UTF8PrintWriter(out);
0 commit comments