Change value of FAIL to FAILED for jsonAsff output type @wildtangent

Change value of FAIL to FAILED for jsonAsff output type
This commit is contained in:
Toni de la Fuente
2020-05-07 17:55:01 +02:00
committed by GitHub

View File

@@ -222,6 +222,11 @@ generateJsonAsffOutput(){
# Replace any successive non-conforming characters with a single underscore
local message=$1
local status=$2
if [[ "$status" == "FAIL" ]]; then
status="FAILED"
fi
local severity=$3
jq -M -c \
--arg ACCOUNT_NUM "$ACCOUNT_NUM" \