Grant the new user to os_creds.project_name 59/40059/1
authorLinda Wang <wangwulin@huawei.com>
Thu, 24 Aug 2017 06:33:55 +0000 (06:33 +0000)
committerLinda Wang <wangwulin@huawei.com>
Thu, 24 Aug 2017 06:33:55 +0000 (06:33 +0000)
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>
snaps/openstack/tests/create_user_tests.py

index 9f08a32..ffae596 100644 (file)
@@ -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)