You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: java-extension/com.microsoft.java.test.plugin/src/main/java/com/microsoft/java/test/plugin/util/TestSearchUtils.java
+16-3Lines changed: 16 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,7 @@
62
62
importjava.util.Collections;
63
63
importjava.util.HashMap;
64
64
importjava.util.HashSet;
65
+
importjava.util.LinkedHashMap;
65
66
importjava.util.LinkedList;
66
67
importjava.util.List;
67
68
importjava.util.Map;
@@ -223,14 +224,26 @@ public static List<JavaTestItem> findTestPackagesAndTypes(List<Object> arguments
223
224
}
224
225
}
225
226
226
-
finalList<JavaTestItem> result = newLinkedList<>();
227
+
// Merge packages that share the same ID (e.g. same package name across different source sets)
0 commit comments