Skip to content

Commit dc05ae8

Browse files
committed
Migrate to clikt 5.0
1 parent b62ff61 commit dc05ae8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/functionalTest/kotlin/io/github/platan/tests_execution_chart/JsonToHtmlReportApp.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
package io.github.platan.tests_execution_chart
44

55
import com.github.ajalt.clikt.core.CliktCommand
6+
import com.github.ajalt.clikt.core.main
67
import com.github.ajalt.clikt.parameters.options.default
78
import com.github.ajalt.clikt.parameters.options.option
89
import com.github.ajalt.clikt.parameters.options.required
@@ -60,5 +61,10 @@ fun main(args: Array<String>) {
6061
ReportConfig.Marks(),
6162
false,
6263
)
63-
ReportCreator(logger).createReports(report, reportConfig, File(commandLineParser.outputDir), commandLineParser.taskName)
64+
ReportCreator(logger).createReports(
65+
report,
66+
reportConfig,
67+
File(commandLineParser.outputDir),
68+
commandLineParser.taskName
69+
)
6470
}

0 commit comments

Comments
 (0)