Skip to content

Commit

Permalink
Remove toString
Browse files Browse the repository at this point in the history
Signed-off-by: Stewart X Addison <sxa@redhat.com>
  • Loading branch information
sxa committed Nov 24, 2022
1 parent 7068d37 commit 19cc5c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jenkins/scripts/VersionSelectorScript.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ combinations.each{
}
// Run tests on Windows ARM64 only if explicitly requested
if (builderLabel =~ /^win.*COMPILED_BY.*-arm64$/) {
if (!new String(parameters['RUN_ARM64_TESTS']).toString().equalsIgnoreCase("true")){
if (!new String(parameters['RUN_ARM64_TESTS']).equalsIgnoreCase("true")){
println "Skipping $builderLabel because RUN_ARM64_TESTS is not selected"
return
}
Expand Down

0 comments on commit 19cc5c9

Please sign in to comment.