Skip to content

Commit 24044bd

Browse files
committed
fixed little bug in test
1 parent e013332 commit 24044bd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

csm_web/scheduler/tests/models/test_user.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import pytest
44
from django.urls import reverse
55
from 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,

0 commit comments

Comments
 (0)