From 59d12a63b4c9eb71294931de1eb8957465cae6fd Mon Sep 17 00:00:00 2001 From: Steve Martinelli Date: Fri, 21 Aug 2015 15:29:08 -0500 Subject: [PATCH] unwedge the osc gate keystone added a new property to projects, called is_domain. our functional tests fail because we are not expecting that in the project's 'show' command. Change-Id: Idf05118155847e3a6002818c44b99825801ea9f4 Related-Bug: #1487600 --- functional/tests/identity/v3/test_identity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functional/tests/identity/v3/test_identity.py b/functional/tests/identity/v3/test_identity.py index bf3da167f..29eba19a1 100644 --- a/functional/tests/identity/v3/test_identity.py +++ b/functional/tests/identity/v3/test_identity.py @@ -28,7 +28,7 @@ class IdentityTests(test.TestCase): TOKEN_FIELDS = ['expires', 'id', 'project_id', 'user_id'] USER_FIELDS = ['email', 'enabled', 'id', 'name', 'name', 'domain_id', 'default_project_id', 'description'] - PROJECT_FIELDS = ['description', 'id', 'domain_id', + PROJECT_FIELDS = ['description', 'id', 'domain_id', 'is_domain', 'enabled', 'name', 'parent_id', 'links'] ROLE_FIELDS = ['id', 'name', 'links'] SERVICE_FIELDS = ['id', 'enabled', 'name', 'type', 'description']