Skip to content

Commit

Permalink
[sendMessage] Fix param
Browse files Browse the repository at this point in the history
Groovy is almost Java, and Java is camelCase :)
  • Loading branch information
msrb committed Nov 21, 2023
1 parent 848f8fb commit 8fd9e73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/sendMessage.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def call(Map params = [:]) {
def testType = params.get('testType') ?: ''
def testResult = params.get('testResult') ?: ''
def testProfile = params.get('testProfile') ?: ''
def xunitUrls = params.get('xunit_urls') ?: []
def xunitUrls = params.get('xunitUrls') ?: []

// isInfo is an alias for isSkipped
isSkipped = isSkipped || isInfo
Expand Down

0 comments on commit 8fd9e73

Please sign in to comment.