Skip to content

Commit

Permalink
test: update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
varshamenon4 committed Mar 28, 2024
1 parent 259dac1 commit d8ffd9a
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,7 @@ def test_add_course_staff_with_existing_user(self):
with NamedTemporaryFile() as csv:
csv = self._write_test_csv(csv, lines)
call_command(self.command, f'--csv_path={csv.name}')
assert User.objects.filter(
username=self.user.username,
email=self.user.email,
).exists()
assert User.objects.filter(username=self.user.username, email=self.user.email).exists()
assert CourseStaffRole.objects.filter(
user=self.user.id,
course_id=self.course_id,
Expand Down

0 comments on commit d8ffd9a

Please sign in to comment.