forked from openedx/edx-enterprise
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add missing CEA definition and fix imports in tests
- Loading branch information
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,8 @@ | |
) | ||
from test_utils.decorators import mock_api_response | ||
from test_utils.factories import FAKER, PendingEnterpriseCustomerUserFactory | ||
from test_utils.fake_enrollment_api import get_course_details, get_default_branding_object | ||
from test_utils.fake_enrollment_api import get_course_details | ||
from test_utils.fake_enterprise_api import get_default_branding_object | ||
|
||
fake = Faker() | ||
|
||
|
@@ -3612,12 +3613,12 @@ def test_bulk_enrollment_in_bulk_courses_pending_licenses( | |
}, | ||
{ | ||
'email': '[email protected]', | ||
'course_run_key': 'course-v2:edX+DemoX+Second_Demo_Course', | ||
'course_run_key': 'course-v1:HarvardX+CoolScience+2016', | ||
'license_uuid': '5a88bdcade7c4ecb838f8111b68e18ac' | ||
}, | ||
{ | ||
'email': '[email protected]', | ||
'course_run_key': 'course-v2:edX+DemoX+Second_Demo_Course', | ||
'course_run_key': 'course-v1:HarvardX+CoolScience+2016', | ||
'license_uuid': '2c58acdade7c4ede838f7111b42e18ac' | ||
}, | ||
] | ||
|