commit | 6f6f53226daca8af241244d23f33975a1d2ed7c2 | [log] [tgz] |
---|---|---|
author | Alexander Gubanov <ogubanov@mirantis.com> | Fri Dec 18 14:47:34 2015 +0200 |
committer | Alexander Gubanov <ogubanov@mirantis.com> | Fri Dec 18 14:47:34 2015 +0200 |
tree | 42f51e36dc198f167856ec3aad68387f4e868d3f | |
parent | 9ccf77af488c3b6464356b6fab106ec78e3b7c51 [diff] |
Fix password not strong enough for identity test_groups Use rand_password method to create users with more complex passwords. This part was missed in commit I57649f5aac9b1abe1a9961d4b35479372ebee519 Change-Id: I9b06e4f1f026ab6795263969aa10e4ddfc5bae92 Related-Bug: 1448217
diff --git a/tempest/api/identity/admin/v3/test_groups.py b/tempest/api/identity/admin/v3/test_groups.py index e022023..21fc62a 100644 --- a/tempest/api/identity/admin/v3/test_groups.py +++ b/tempest/api/identity/admin/v3/test_groups.py
@@ -86,8 +86,7 @@ def test_list_user_groups(self): # create a user user = self.client.create_user( - data_utils.rand_name('User'), - password=data_utils.rand_name('Pass'))['user'] + data_utils.rand_name('User'), data_utils.rand_password())['user'] self.addCleanup(self.client.delete_user, user['id']) # create two groups, and add user into them groups = []