Skip to content

Commit

Permalink
Remove additional method
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <[email protected]>
  • Loading branch information
gaiksaya committed Jul 23, 2024
1 parent b7656ca commit 0079586
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions tests/jenkins/TestReleaseNotesCheckAndCompile.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,6 @@ class TestReleaseNotesCheckAndCompile extends BuildPipelineTest {
call.methodName == 'sh'
}.any { call ->
callArgsToString(call).contains('./release_notes.sh compile manifests/3.0.0/opensearch-3.0.0.yml manifests/3.0.0/opensearch-dashboards-3.0.0.yml --output table.md')
}).isTrue()
}


def getShellCommands(String searchtext) {
def shCommands = helper.callStack.findAll { call ->
call.methodName == 'sh'
}.collect { call ->
callArgsToString(call)
}.findAll { command ->
command.contains(searchtext)
}
return shCommands
}).isTrue()
}
}

0 comments on commit 0079586

Please sign in to comment.