mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-17 07:20:45 +00:00
Fix OSC identity v3 functional tests
The OSC identity v3 functional tests are failing due to [1] which added 'password_expires_at' to the user object. This patch set fixes the tests by updating user object fields list to include 'password_expires_at'. [1] https://review.openstack.org/#/c/333360/ Change-Id: Id4b060115d4270899ca0af2dc7b67ee723388e31
This commit is contained in:
parent
0b91368164
commit
b3248fb0bd
1 changed files with 2 additions and 1 deletions
|
|
@ -27,7 +27,8 @@ class IdentityTests(test.TestCase):
|
|||
GROUP_FIELDS = ['description', 'domain_id', 'id', 'name', 'links']
|
||||
TOKEN_FIELDS = ['expires', 'id', 'project_id', 'user_id']
|
||||
USER_FIELDS = ['email', 'enabled', 'id', 'name', 'name',
|
||||
'domain_id', 'default_project_id', 'description']
|
||||
'domain_id', 'default_project_id', 'description',
|
||||
'password_expires_at']
|
||||
PROJECT_FIELDS = ['description', 'id', 'domain_id', 'is_domain',
|
||||
'enabled', 'name', 'parent_id', 'links']
|
||||
ROLE_FIELDS = ['id', 'name', 'links', 'domain_id']
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue