Skip to content

Commit b3248fb

Browse files
committed
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
1 parent 0b91368 commit b3248fb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

functional/tests/identity/v3/common.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ class IdentityTests(test.TestCase):
2727
GROUP_FIELDS = ['description', 'domain_id', 'id', 'name', 'links']
2828
TOKEN_FIELDS = ['expires', 'id', 'project_id', 'user_id']
2929
USER_FIELDS = ['email', 'enabled', 'id', 'name', 'name',
30-
'domain_id', 'default_project_id', 'description']
30+
'domain_id', 'default_project_id', 'description',
31+
'password_expires_at']
3132
PROJECT_FIELDS = ['description', 'id', 'domain_id', 'is_domain',
3233
'enabled', 'name', 'parent_id', 'links']
3334
ROLE_FIELDS = ['id', 'name', 'links', 'domain_id']

0 commit comments

Comments
 (0)