File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
csm_web/scheduler/tests/models Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 33import pytest
44from django .urls import reverse
55from scheduler .factories import (
6- CoordinatorFactory ,
76 CourseFactory ,
87 MentorFactory ,
98 SectionFactory ,
@@ -47,7 +46,6 @@ def fixture_setup_permissions():
4746 # Assign mentors to courses
4847 mentor_a = MentorFactory (user = mentor_user , course = course_a )
4948 mentor_b = MentorFactory (user = other_mentor_user , course = course_b )
50- coordinator = CoordinatorFactory (user = coordinator_user , course = course_a )
5149
5250 # Create sections associated with the correct course via the mentor
5351 section_a1 = SectionFactory (mentor = mentor_a )
@@ -64,7 +62,7 @@ def fixture_setup_permissions():
6462 "other_student_user" : other_student_user ,
6563 "mentor_user" : mentor_user ,
6664 "other_mentor_user" : other_mentor_user ,
67- "coordinator_user" : coordinator ,
65+ "coordinator_user" : coordinator_user ,
6866 "course_a" : course_a ,
6967 "course_b" : course_b ,
7068 "section_a1" : section_a1 ,
You can’t perform that action at this time.
0 commit comments