Skip to content

Commit

Permalink
Merge pull request openedx#839 from Stanford-Online/dcadams/remove_space
Browse files Browse the repository at this point in the history
Remove spaces for pep8
  • Loading branch information
David Adams authored Nov 7, 2018
2 parents 5513a3e + 2731fb1 commit be07695
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/djangoapps/student/tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ def test_users_enrolled_with_fake_email(self):
fake_user = UserFactory.create(email='test@example.com')
CourseEnrollmentFactory.create(user=fake_user, course_id=self.course.id)

total_enrolled_users = CourseEnrollment.objects.users_enrolled_in(self.course.id)
actual_enrolled_users = CourseEnrollment.objects.users_enrolled_in(self.course.id, exclude_fake_email=True)
total_enrolled_users = CourseEnrollment.objects.users_enrolled_in(self.course.id)
actual_enrolled_users = CourseEnrollment.objects.users_enrolled_in(self.course.id, exclude_fake_email=True)
self.assertEqual(2, total_enrolled_users.count())
self.assertEqual(1, actual_enrolled_users.count())

Expand Down

0 comments on commit be07695

Please sign in to comment.