diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/vHello_Tacker.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vHello_Tacker.sh b/tests/vHello_Tacker.sh index 890f677..26ac88b 100644 --- a/tests/vHello_Tacker.sh +++ b/tests/vHello_Tacker.sh @@ -81,7 +81,7 @@ start() { while [[ -z $active ]] do active=$(tacker vnf-show hello-world-tacker | grep ACTIVE) - if [ ! -z error=$(tacker vnf-show hello-world-tacker | grep ERROR) ]; then + if [ ! -z $(tacker vnf-show hello-world-tacker | grep ERROR) ]; then echo "$0: hello-world-tacker VNF creation failed with state ERROR" fail fi |