summaryrefslogtreecommitdiff
path: root/functional
diff options
context:
space:
mode:
authorSteve Martinelli <stevemar@ca.ibm.com>2015-08-21 15:29:08 -0500
committerSteve Martinelli <stevemar@ca.ibm.com>2015-08-21 15:33:48 -0500
commit59d12a63b4c9eb71294931de1eb8957465cae6fd (patch)
treec84d84423160608762c8f5ac8cdd4d635f1b7bfe /functional
parent913faaa3924f253a167ac4bd06e7f651c808067d (diff)
downloadpython-openstackclient-59d12a63b4c9eb71294931de1eb8957465cae6fd.tar.gz
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
Diffstat (limited to 'functional')
-rw-r--r--functional/tests/identity/v3/test_identity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functional/tests/identity/v3/test_identity.py b/functional/tests/identity/v3/test_identity.py
index bf3da167..29eba19a 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']