Skip to content

Commit

Permalink
test: fix command
Browse files Browse the repository at this point in the history
  • Loading branch information
varshamenon4 committed Mar 22, 2024
1 parent 2862bf2 commit d27acb0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def test_add_course_staff_with_batch_size(self):
csv = self._write_test_csv(csv, lines)
# todo: figure out how to check success but not via logs
# todo: assert number of queries is correct
call_command(self.command, f'--csv_path={csv.name} --batch_size=1')
call_command(self.command, f'--csv_path={csv.name}', '--batch_size=1')
assert CourseStaffRole.objects.filter(course_id='course-v1:edx+test+f20').count() == 2

def test_add_course_staff_with_batch_delay(self):
Expand Down

0 comments on commit d27acb0

Please sign in to comment.