Skip to content

Commit

Permalink
Fix Detekt after the fact. Hmmm.
Browse files Browse the repository at this point in the history
  • Loading branch information
schmonz committed Nov 27, 2024
1 parent e57c181 commit 5491010
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class JUnit5Listener : TestExecutionListener {
if (System.getenv("GREENCENTLY_SUMMARY") !== null) {
System.err.println(
"greencently (total, green, red): " +
"(${greenTestCount + redTestCount}, ${greenTestCount}, ${redTestCount})"
"($greenTestCount + $redTestCount, $greenTestCount, $redTestCount)"
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ class JUnit5Planner(testClasspath: Path?, private val testClassesMatching: Strin
.selectors(DiscoverySelectors.selectClasspathRoots(setOf(testClasspath)))
.filters(ClassNameFilter.includeClassNamePatterns(testClassesMatching))
.build()
).
countTestIdentifiers(TestIdentifier::isTest)

)
.countTestIdentifiers(TestIdentifier::isTest)
}

0 comments on commit 5491010

Please sign in to comment.