summaryrefslogtreecommitdiff
path: root/functional
diff options
context:
space:
mode:
authorRichard Theis <rtheis@us.ibm.com>2016-08-10 08:51:25 -0500
committerRichard Theis <rtheis@us.ibm.com>2016-08-10 08:51:25 -0500
commitb3248fb0bdf52905b4c241d561f9e8738fc56eba (patch)
tree726b265d3683ff3c58bf0fbf4b5553c7e47407e3 /functional
parent0b91368164acc596bf97fe4073083e26892f5b1a (diff)
downloadpython-openstackclient-b3248fb0bdf52905b4c241d561f9e8738fc56eba.tar.gz
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
Diffstat (limited to 'functional')
-rw-r--r--functional/tests/identity/v3/common.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/functional/tests/identity/v3/common.py b/functional/tests/identity/v3/common.py
index c988d336..47019c5f 100644
--- a/functional/tests/identity/v3/common.py
+++ b/functional/tests/identity/v3/common.py
@@ -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']