summaryrefslogtreecommitdiffstats
path: root/testcases/vnf/vIMS/vIMS.py
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-08-23 12:23:58 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-08-23 12:23:58 +0000
commitaa427a97dcc96afe5b7c9c168470fd49e9331da8 (patch)
treef7ab1aac20bed93d550f786ef82195c740151683 /testcases/vnf/vIMS/vIMS.py
parenta01dbcf5d10a2433eb4cb29d03677820996b9eb5 (diff)
parent3e95a1cd0721924e89e2cfd2960d4736bc6c5588 (diff)
Merge "when create/get/update failed return None rather than False"
Diffstat (limited to 'testcases/vnf/vIMS/vIMS.py')
-rwxr-xr-xtestcases/vnf/vIMS/vIMS.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testcases/vnf/vIMS/vIMS.py b/testcases/vnf/vIMS/vIMS.py
index dfbb6759c..373761794 100755
--- a/testcases/vnf/vIMS/vIMS.py
+++ b/testcases/vnf/vIMS/vIMS.py
@@ -277,7 +277,7 @@ def main():
tenant_id = os_utils.create_tenant(
keystone, TENANT_NAME, TENANT_DESCRIPTION)
- if tenant_id == '':
+ if not tenant_id:
step_failure("init", "Error : Failed to create " +
TENANT_NAME + " tenant")
@@ -296,7 +296,7 @@ def main():
user_id = os_utils.create_user(
keystone, TENANT_NAME, TENANT_NAME, None, tenant_id)
- if user_id == '':
+ if not user_id:
logger.error("Error : Failed to create %s user" % TENANT_NAME)
logger.info("Update OpenStack creds informations")