Fix if check in neutron lib forward testing definition

This commit adds missing space to the if condition for detecting
whether the job is on icehouse or not. Without this the check fails
with an error like:

   /tmp/hudson6963778358651597131.sh: line 8: [: missing `]'

which causes all of the forward testing jobs to run the incomplete
set of tests.

Change-Id: Id577a4943864f431c8e5e4b8dbdfcb8d59f125aa
This commit is contained in:
Matthew Treinish 2015-02-18 21:20:41 -05:00
parent c5546d307a
commit 8f67a374b1

View File

@ -197,7 +197,7 @@
export DEVSTACK_GATE_NEUTRON=1
export BRANCH_OVERRIDE={branch-override}
# neutron icehouse does not pass tempest full reliably
if [ "$BRANCH_OVERRIDE" != "stable/icehouse"] ; then
if [ "$BRANCH_OVERRIDE" != "stable/icehouse" ] ; then
export DEVSTACK_GATE_TEMPEST_FULL=1
fi