Merge "Fix identity test_role functional tests"

This commit is contained in:
Jenkins 2016-02-12 00:54:56 +00:00 committed by Gerrit Code Review
commit 0cf8b29cfe
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ class IdentityTests(test.TestCase):
'username', 'domain_id', 'default_project_id']
PROJECT_FIELDS = ['enabled', 'id', 'name', 'description', 'domain_id']
TOKEN_FIELDS = ['expires', 'id', 'project_id', 'user_id']
ROLE_FIELDS = ['id', 'name', 'links']
ROLE_FIELDS = ['id', 'name', 'links', 'domain_id']
SERVICE_FIELDS = ['id', 'enabled', 'name', 'type', 'description']
ENDPOINT_FIELDS = ['id', 'region', 'service_id', 'service_name',
'service_type', 'enabled', 'publicurl',

View File

@ -30,7 +30,7 @@ class IdentityTests(test.TestCase):
'domain_id', 'default_project_id', 'description']
PROJECT_FIELDS = ['description', 'id', 'domain_id', 'is_domain',
'enabled', 'name', 'parent_id', 'links']
ROLE_FIELDS = ['id', 'name', 'links']
ROLE_FIELDS = ['id', 'name', 'links', 'domain_id']
SERVICE_FIELDS = ['id', 'enabled', 'name', 'type', 'description']
REGION_FIELDS = ['description', 'enabled', 'parent_region', 'region']
ENDPOINT_FIELDS = ['id', 'region', 'region_id', 'service_id',