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 08f6b3f commit c35110a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions vars/updateIntegTestFailureIssues.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ void call(Map args = [:]) {
testData << rowData
}
def markdownContent = new CreateIntegTestMarkDownTable(version, testData).create()
if (markdownContent instanceof Serializable) {
println "This object is serializable."
} else {
println "This object is NOT serializable."
}
println(markdownContent)
writeFile file: "failedTestDetails.md", text: markdownContent.toString()
println('Wrote file')
Expand Down

0 comments on commit c35110a

Please sign in to comment.