Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/development' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
pderakhshanfar committed Apr 15, 2024
2 parents e8321d5 + 5682e67 commit 9b01447
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ enum class JUnitVersion(
RunWithAnnotationMeta("ExtendWith", "import org.junit.jupiter.api.extension.ExtendWith;"),
),
JUnit4(
"junit",
"junit:junit",
4,
setOf(
JarLibraryDescriptor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class JUnitCombobox(val e: AnActionEvent) : ComboBox<JUnitVersion>(JUnitVersion.
for (orderEntry in ModuleRootManager.getInstance(module).orderEntries) {
if (orderEntry is LibraryOrderEntry) {
val libraryName = orderEntry.library?.name ?: continue
for (junit in JUnitVersion.values()) {
for (junit in JUnitVersion.entries) {
if (libraryName.contains(junit.groupId)) {
detected.add(junit)
}
Expand Down

0 comments on commit 9b01447

Please sign in to comment.