From b3248fb0bdf52905b4c241d561f9e8738fc56eba Mon Sep 17 00:00:00 2001 From: Richard Theis Date: Wed, 10 Aug 2016 08:51:25 -0500 Subject: [PATCH] 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 --- functional/tests/identity/v3/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functional/tests/identity/v3/common.py b/functional/tests/identity/v3/common.py index c988d33638..47019c5fc8 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']