summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinda Wang <wangwulin@huawei.com>2017-08-24 06:33:55 +0000
committerLinda Wang <wangwulin@huawei.com>2017-08-24 06:33:55 +0000
commitff33255c53787b12a65db2db163c68247a5f5ae8 (patch)
tree62c94492c85329cd6fa76ebebe63353ee5adf5d2
parente7b96a812bb7b30416b4adb24ef0f22666687c10 (diff)
Grant the new user to os_creds.project_name
For the test test_create_admin_user, the new user is granted to the project "admin", so the role retrieval is None with os_creds.project_name, which is not "admin". Change-Id: I840d81ec83a72fc913edef8d4200223dfa2eca39 Signed-off-by: Linda Wang <wangwulin@huawei.com>
-rw-r--r--snaps/openstack/tests/create_user_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/snaps/openstack/tests/create_user_tests.py b/snaps/openstack/tests/create_user_tests.py
index 9f08a32..ffae596 100644
--- a/snaps/openstack/tests/create_user_tests.py
+++ b/snaps/openstack/tests/create_user_tests.py
@@ -105,7 +105,7 @@ class CreateUserSuccessTests(OSComponentTestCase):
self.user_settings = UserSettings(
name=guid + '-name',
password=guid + '-password',
- roles={'admin': 'admin'},
+ roles={'admin': self.os_creds.project_name},
domain_name=self.os_creds.user_domain_name)
self.keystone = keystone_utils.keystone_client(self.os_creds)