summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAric Gardner <agardner@linuxfoundation.org>2017-09-11 20:05:45 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-11 20:05:45 +0000
commita76fc99e5a827c055191defe771a0d40b8583922 (patch)
treecc82795c082d91c79759b830296b3214ae3cb812
parent36f65f1cc4edaa754014a435944ed1cab0b3d80b (diff)
parente6a1c71d2396438a0f9e709fc6591d4f592d6ac9 (diff)
Merge "functest: Fix missing brackets in condition"
-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)