Docs: Fix the query params in role_assignments example

Changed '?' to '&' on second query param

Change-Id: I5984bfa27d72e9960b2fdac9a665626492f1155f
This commit is contained in:
Shoham Peller 2016-07-05 14:52:30 +03:00 committed by Steve Martinelli
parent 70c759bc0d
commit 6ad13d1916
2 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ examples are:
- List all role assignments for a specified project and its sub-
projects:
:: GET /role_assignments?scope.project.id={project_id}?includ
:: GET /role_assignments?scope.project.id={project_id}&includ
e_subtree=true
If you specify ``include_subtree=true``, you must also specify

View File

@ -2187,7 +2187,7 @@ class AssignmentInheritanceTestCase(test_v3.RestfulTestCase,
expected_status=http_client.BAD_REQUEST)
def test_get_role_assignments_for_project_tree(self):
"""Get role_assignment?scope.project.id=X?include_subtree``.
"""Get role_assignment?scope.project.id=X&include_subtree``.
Test Plan:
@ -2255,7 +2255,7 @@ class AssignmentInheritanceTestCase(test_v3.RestfulTestCase,
self.assertRoleAssignmentInListResponse(r, non_inher_entity_root)
def test_get_effective_role_assignments_for_project_tree(self):
"""Get role_assignment ?project_id=X?include_subtree=True?effective``.
"""Get role_assignment ?project_id=X&include_subtree=True&effective``.
Test Plan: