diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-09-05 03:51:06 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-09-05 07:12:37 +0000 |
commit | 96357c54369a04f2b5d117573cf3fd3478d63623 (patch) | |
tree | 595c048eacc2076aaa4d4f4be7168ff6915a5974 /functest/core | |
parent | bbe21a39bb86d1c548728ba3aaf98bb2a9419ec3 (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.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/functest/core/vnf.py b/functest/core/vnf.py index bbdd80a0..868b8b48 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) |