From a72091f29ca756e053b2a03929c295b621847abe Mon Sep 17 00:00:00 2001 From: aguilard Date: Mon, 30 Aug 2021 10:16:31 +0200 Subject: [PATCH] Fixed error in ci_stage_3.groovy file There was a typo in threshold variables. Change-Id: Ib4cf608e0694e89f015212c6a011d4faa001d88c Signed-off-by: aguilard --- jenkins/ci-pipelines/ci_stage_3.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jenkins/ci-pipelines/ci_stage_3.groovy b/jenkins/ci-pipelines/ci_stage_3.groovy index 8804ceec..967bd5d3 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -69,8 +69,8 @@ void run_robot_systest(String tagName, String hostfile=null, String jujuPassword=null, String osmRSAfile=null, - String passThreshold='0.0', - String unstableThreshold='0.0') { + String pass_th='0.0', + String unstable_th='0.0') { tempdir = sh(returnStdout: true, script: 'mktemp -d').trim() if ( !envfile ) { sh(script: "touch ${tempdir}/env") -- 2.17.1