summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorvitikkan <viktor.tikkanen@nokia.com>2016-04-25 14:43:57 +0300
committerJose Lausuch <jose.lausuch@ericsson.com>2016-04-25 12:26:36 +0000
commitfbccb99430451ec3d9c6f19426d104f4dce292bb (patch)
treee74b968694e56fdc3ff92c7bf446226aa5f4cdd1 /docker
parent423db209c5efe182fd1b82c2eec0df7c38dc7c8d (diff)
Corrected if statement for clean_openstack
Change-Id: I3d8c0cb81dc4906ea989bd36dc8c29bf9f1f6396 Signed-off-by: vitikkan <viktor.tikkanen@nokia.com>
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/run_tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/run_tests.sh b/docker/run_tests.sh
index c258136da..1ef90b24e 100755
--- a/docker/run_tests.sh
+++ b/docker/run_tests.sh
@@ -191,7 +191,7 @@ bgpvpn = True" >> /etc/tempest/tempest.conf
;;
esac
- if [[ -n $clean_flag ]]; then
+ if [ $clean == "true" ]; then
clean_openstack
fi
}