Fix typo in boolean constants
Change-Id: Ic0fcd503be70c25d6d6a8ec9f738cfdba86a87bf
Closes-Bug: PROD-24319
diff --git a/cloud-update.groovy b/cloud-update.groovy
index 9fdeaad..56f9351 100644
--- a/cloud-update.groovy
+++ b/cloud-update.groovy
@@ -846,7 +846,7 @@
timeout(time: 12, unit: 'HOURS') {
node() {
try {
- if(RUN_CVP_TESTS.toBoolean() == True){
+ if(RUN_CVP_TESTS.toBoolean() == true){
stage('Run CVP tests before upgrade.') {
build job: "cvp-sanity"
build job: "cvp-func"
@@ -1581,7 +1581,7 @@
// verification is already present in restore pipelines
}
- if(RUN_CVP_TESTS.toBoolean() == True){
+ if(RUN_CVP_TESTS.toBoolean() == true){
stage('Run CVP tests after upgrade.') {
build job: "cvp-sanity"
build job: "cvp-func"