aboutsummaryrefslogtreecommitdiffstats
path: root/functest/core
diff options
context:
space:
mode:
authorLinda Wang <wangwulin@huawei.com>2017-09-05 03:51:06 +0000
committerLinda Wang <wangwulin@huawei.com>2017-09-05 07:12:37 +0000
commit96357c54369a04f2b5d117573cf3fd3478d63623 (patch)
tree595c048eacc2076aaa4d4f4be7168ff6915a5974 /functest/core
parentbbe21a39bb86d1c548728ba3aaf98bb2a9419ec3 (diff)
Fix the cloudify_ims update quotas error
Change-Id: I62376dd02dd95ebff54c1ebf963267c6534181ed Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'functest/core')
-rw-r--r--functest/core/vnf.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/functest/core/vnf.py b/functest/core/vnf.py
index bbdd80a00..868b8b48f 100644
--- a/functest/core/vnf.py
+++ b/functest/core/vnf.py
@@ -120,10 +120,9 @@ class VnfOnBoarding(base.TestCase):
UserSettings(
name=self.tenant_name,
password=self.tenant_name))
- user_creator.create()
self.created_object.append(user_creator)
- project_creator.assoc_user(user_creator.user_settings)
+ project_creator.assoc_user(user_creator.create())
self.snaps_creds = user_creator.get_os_creds(self.tenant_name)