Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <[email protected]>
  • Loading branch information
gaiksaya committed Oct 7, 2024
1 parent 2d77d0f commit 4d83b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jenkins/CreateIntegTestMarkDownTable.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class CreateIntegTestMarkDownTable {
|----------|--------------|--------------|----------------------|--------------|
"""
def tableRows = this.tableData.collect { row ->
"| ${row.platform.toString()} | ${row.distribution.toString()} | ${row.architecture.toString()} | ${row.test_report_manifest_yml.toString()} | ${row.integ_test_build_url.toString()}"
"| ${row['platform']} | ${row['distribution']} | ${row['architecture']} | ${row['test_report_manifest_yml']} | ${row['integ_test_build_url']}"
}.join("\n")

def additionalInformation = """
Expand Down

0 comments on commit 4d83b34

Please sign in to comment.