Skip to content

Commit

Permalink
Remove erroneous $
Browse files Browse the repository at this point in the history
Flakiness overhead: 0H 01m 00s$ <- should not be there
  • Loading branch information
smugleafdev authored and Malinskiy committed Aug 3, 2023
1 parent 7873e5b commit 884b1a1
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 884b1a1

Please sign in to comment.