Merge "functest: Fix missing brackets in condition"
authorAric Gardner <agardner@linuxfoundation.org>
Mon, 11 Sep 2017 20:05:45 +0000 (20:05 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Mon, 11 Sep 2017 20:05:45 +0000 (20:05 +0000)
jjb/functest/functest-alpine.sh

index 9be9fe5..57398fa 100755 (executable)
@@ -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)