From 40147f28f8673495fd53fab8ac817736aba2a8ce Mon Sep 17 00:00:00 2001 From: Akita Noek Date: Mon, 25 Apr 2016 14:19:02 -0400 Subject: [PATCH] Updated test --- awx/main/tests/functional/test_rbac_api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/main/tests/functional/test_rbac_api.py b/awx/main/tests/functional/test_rbac_api.py index 9c1fd34356..2297868aa6 100644 --- a/awx/main/tests/functional/test_rbac_api.py +++ b/awx/main/tests/functional/test_rbac_api.py @@ -96,6 +96,7 @@ def test_user_view_other_user_roles(organization, inventory, team, get, alice, b 'Users can see roles for other users, but only the roles that that user has access to see as well' organization.member_role.members.add(alice) organization.admin_role.members.add(bob) + organization.member_role.members.add(bob) custom_role = Role.objects.create(name='custom_role-test_user_view_admin_roles_list') organization.member_role.children.add(custom_role) team.member_role.members.add(bob)