Commit 7570c2f7 by Albert St. Aubin

rebase cleanup

parent 7630c98b
...@@ -153,7 +153,6 @@ class EntitlementViewSetTest(ModuleStoreTestCase): ...@@ -153,7 +153,6 @@ class EntitlementViewSetTest(ModuleStoreTestCase):
entitlement = CourseEntitlementFactory() entitlement = CourseEntitlementFactory()
CourseEntitlementFactory.create_batch(2) CourseEntitlementFactory.create_batch(2)
CourseEntitlementFactory()
url = reverse(self.ENTITLEMENTS_DETAILS_PATH, args=[str(entitlement.uuid)]) url = reverse(self.ENTITLEMENTS_DETAILS_PATH, args=[str(entitlement.uuid)])
response = self.client.get( response = self.client.get(
...@@ -201,7 +200,6 @@ class EntitlementViewSetTest(ModuleStoreTestCase): ...@@ -201,7 +200,6 @@ class EntitlementViewSetTest(ModuleStoreTestCase):
@unittest.skipUnless(settings.ROOT_URLCONF == 'lms.urls', 'Test only valid in lms') @unittest.skipUnless(settings.ROOT_URLCONF == 'lms.urls', 'Test only valid in lms')
# @patch("openedx.core.djangoapps.catalog.utils.get_course_runs_for_course")
class EntitlementEnrollmentViewSetTest(ModuleStoreTestCase): class EntitlementEnrollmentViewSetTest(ModuleStoreTestCase):
ENTITLEMENTS_ENROLLMENT_NAMESPACE = 'entitlements_api:v1:enrollments' ENTITLEMENTS_ENROLLMENT_NAMESPACE = 'entitlements_api:v1:enrollments'
......
...@@ -319,7 +319,7 @@ class StudentDashboardTests(SharedModuleStoreTestCase, MilestonesTestCaseMixin): ...@@ -319,7 +319,7 @@ class StudentDashboardTests(SharedModuleStoreTestCase, MilestonesTestCaseMixin):
If we remove the prerequisite and access the dashboard again, the prerequisite If we remove the prerequisite and access the dashboard again, the prerequisite
should not appear. should not appear.
""" """
self.pre_requisite_course =CourseFactory.create(org='edx', number='999', display_name='Pre requisite Course') self.pre_requisite_course = CourseFactory.create(org='edx', number='999', display_name='Pre requisite Course')
self.course = CourseFactory.create( self.course = CourseFactory.create(
org='edx', org='edx',
number='998', number='998',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment