Skip to content

Commit

Permalink
test: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
varshamenon4 committed Mar 28, 2024
1 parent d8ffd9a commit 6a20932
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_add_course_staff_with_existing_user(self):
assert CourseStaffRole.objects.filter(
user=self.user.id,
course_id=self.course_id,
course_role=self.course_role,
role=self.course_role,
).exists()

def test_add_course_staff_with_new_user(self):
Expand All @@ -66,7 +66,7 @@ def test_add_course_staff_with_new_user(self):
assert CourseStaffRole.objects.filter(
user=user.id,
course_id=self.course_id,
course_role=self.course_role,
role=self.course_role,
).exists()

def test_add_course_staff_with_not_default_batch_size(self):
Expand Down

0 comments on commit 6a20932

Please sign in to comment.