Skip to content

Commit

Permalink
Merge pull request #135 from john-dupuy/jdupuy-fix-typo
Browse files Browse the repository at this point in the history
Fix error message typo
  • Loading branch information
john-dupuy authored Apr 6, 2021
2 parents 5604e52 + 393c9af commit 60e0694
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vars/iqeUtils.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -505,10 +505,10 @@ private def createTestStages(String appName, Map appConfig) {
// stash junit files so that other nodes can read them later
stash name: "${appName}-stash-files", allowEmpty: true, includes: "junit-*.xml"

echo "Plugins passed: ${pluginsPassed.keySet().join(",")}"
echo "Plugins passed: ${pluginsPassed.keySet().join(',')}"
if (pluginsFailed || pluginsError) {
error "Plugins failed: ${pluginsFailed.keySet().join(",")}" \
" Plugins error: ${pluginsError}.keySet().join(",")}"
error "Plugins failed: ${pluginsFailed.keySet().join(',')} " +
"Plugins error: ${pluginsError}.keySet().join(',')}"
}
else if (!pluginsPassed) {
error "No plugins failed nor passed. Were the test runs aborted early?"
Expand Down

0 comments on commit 60e0694

Please sign in to comment.