Skip to content

Commit

Permalink
Rename methods
Browse files Browse the repository at this point in the history
  • Loading branch information
platan committed Nov 1, 2023
1 parent cf2e123 commit 6c540c0
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 @@ -12,7 +12,7 @@ private const val TABLE_SRC_PLACEHOLDER = "@TABLE@"

class HtmlGanttDiagramFormatter {

fun formatHtml(
fun format(
report: TestExecutionScheduleReport,
scriptSrc: String,
maxTextSize: Int
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class HtmlGanttDiagramReporter :
}
val maxTextSize = config.script.options.maxTextSize

val htmlReport = HtmlGanttDiagramFormatter().formatHtml(report, scriptSrc, maxTextSize)
val htmlReport = HtmlGanttDiagramFormatter().format(report, scriptSrc, maxTextSize)
val reportFile = SingleFileReportWriter().save(htmlReport, taskName, baseDir, config.outputLocation, "html")
logger.lifecycle("Tests execution schedule report saved to ${reportFile.absolutePath} file.")
}
Expand Down

0 comments on commit 6c540c0

Please sign in to comment.