Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
2757ac4f
Commit
2757ac4f
authored
Jun 09, 2014
by
Julia Hansbrough
Committed by
Sarina Canelake
Jun 09, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Opaque-keys: response to code review
parent
3a9f0b3f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
cms/djangoapps/contentstore/tests/test_permissions.py
+2
-3
No files found.
cms/djangoapps/contentstore/tests/test_permissions.py
View file @
2757ac4f
...
@@ -99,10 +99,8 @@ class TestCourseAccess(ModuleStoreTestCase):
...
@@ -99,10 +99,8 @@ class TestCourseAccess(ModuleStoreTestCase):
user_by_role
[
role
]
=
[]
user_by_role
[
role
]
=
[]
# Org-based roles are created via org name, rather than course_key
# Org-based roles are created via org name, rather than course_key
if
(
role
is
OrgStaffRole
)
or
(
role
is
OrgInstructorRole
):
if
(
role
is
OrgStaffRole
)
or
(
role
is
OrgInstructorRole
):
# pylint: disable=protected-access
group
=
role
(
self
.
course_key
.
org
)
group
=
role
(
self
.
course_key
.
org
)
else
:
else
:
# pylint: disable=protected-access
group
=
role
(
self
.
course_key
)
group
=
role
(
self
.
course_key
)
# NOTE: this loop breaks the roles.py abstraction by purposely assigning
# NOTE: this loop breaks the roles.py abstraction by purposely assigning
# users to one of each possible groupname in order to test that has_course_access
# users to one of each possible groupname in order to test that has_course_access
...
@@ -125,7 +123,8 @@ class TestCourseAccess(ModuleStoreTestCase):
...
@@ -125,7 +123,8 @@ class TestCourseAccess(ModuleStoreTestCase):
auth
.
add_users
(
auth
.
add_users
(
self
.
user
,
self
.
user
,
role
(
copy_course_key
.
org
),
role
(
copy_course_key
.
org
),
*
role
(
self
.
course_key
.
org
)
.
users_with_role
())
*
role
(
self
.
course_key
.
org
)
.
users_with_role
()
)
else
:
else
:
auth
.
add_users
(
auth
.
add_users
(
self
.
user
,
self
.
user
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment