summaryrefslogtreecommitdiffstats
path: root/jjb/functest
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-09-11 22:03:03 +0200
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-09-11 22:03:03 +0200
commite6a1c71d2396438a0f9e709fc6591d4f592d6ac9 (patch)
treee3b2873ee305dbb036ff518df4b9e19d36d203b5 /jjb/functest
parente958d2e2a7a2f92e5227d2c3e3c73a050fca72a9 (diff)
functest: Fix missing brackets in condition
Change-Id: If6d4f6b2ac0266af35b150159a752b8b6f48ad83 Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'jjb/functest')
-rwxr-xr-xjjb/functest/functest-alpine.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/functest/functest-alpine.sh b/jjb/functest/functest-alpine.sh
index 9be9fe57f..57398faf6 100755
--- a/jjb/functest/functest-alpine.sh
+++ b/jjb/functest/functest-alpine.sh
@@ -68,7 +68,7 @@ volumes="${images_vol} ${results_vol} ${sshkey_vol} ${rc_file_vol} ${cacert_file
set +e
-if ${FUNCTEST_SUITE_NAME} == 'healthcheck'; then
+if [ ${FUNCTEST_SUITE_NAME} == 'healthcheck' ]; then
tiers=(healthcheck)
else
tiers=(healthcheck smoke features vnf)