diff options
author | 2016-09-13 05:03:17 +0000 | |
---|---|---|
committer | 2016-09-13 05:03:17 +0000 | |
commit | 933c0886e1230c52d7645d7c0f2034944f459a0c (patch) | |
tree | 6643a3bb057af10f3c234bdd1fcec25b370ab735 /tests | |
parent | e138798d4540579b18504ed3800351dcbb0cddd8 (diff) |
Fix error check
JIRA: MODELS-23
Change-Id: I948c42c82d830552f1c6c1585fd5bb5d73f15860
Signed-off-by: blsaws <bryan.sullivan@att.com>
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 |