Skip to content

Commit

Permalink
Remove erroneous $ (#826)
Browse files Browse the repository at this point in the history
Flakiness overhead: 0H 01m 00s$ <- should not be there

Co-authored-by: smugleafdev <[email protected]>
  • Loading branch information
Malinskiy and smugleafdev authored Aug 3, 2023
1 parent 7873e5b commit d6cab46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class StdoutReporter(private val timer: Timer) : Reporter {
.forEach { testName -> cliReportBuilder.appendLine("\t\t$testName") }
}

cliReportBuilder.appendLine("\tFlakiness overhead: ${formatDuration(poolSummary.rawDurationMillis - poolSummary.durationMillis)}$")
cliReportBuilder.appendLine("\tFlakiness overhead: ${formatDuration(poolSummary.rawDurationMillis - poolSummary.durationMillis)}")
cliReportBuilder.appendLine("\tRaw: ${poolSummary.rawPassed.size} passed, ${poolSummary.rawFailed.size} failed, ${poolSummary.rawIgnored.size} ignored, ${poolSummary.rawIncomplete.size} incomplete tests")

if(poolSummary.rawFailed.isNotEmpty()){
Expand Down

0 comments on commit d6cab46

Please sign in to comment.