Version bump for edx-enterprise

This commit is contained in:
Brittney Exline
2019-06-14 11:17:20 -06:00
parent 45e390d0ea
commit bf88bca776
9 changed files with 13 additions and 18 deletions

View File

@@ -187,7 +187,6 @@ class EnterpriseApiClient(object):
"enterprise_customer": {
"uuid": "cf246b88-d5f6-4908-a522-fc307e0b0c59",
"name": "TestShib",
"catalog": 2,
"active": true,
"site": {
"domain": "example.com",

View File

@@ -12,7 +12,6 @@ FEATURES_WITH_ENTERPRISE_ENABLED['ENABLE_ENTERPRISE_INTEGRATION'] = True
FAKE_ENTERPRISE_CUSTOMER = {
'active': True,
'branding_configuration': None,
'catalog': None,
'enable_audit_enrollment': False,
'enable_data_sharing_consent': False,
'enforce_data_sharing_consent': 'at_enrollment',

View File

@@ -33,7 +33,6 @@ class EnterpriseCustomerFactory(factory.django.DjangoModelFactory):
name = factory.LazyAttribute(lambda x: FAKER.company()) # pylint: disable=no-member
active = True
site = factory.SubFactory(SiteFactory)
catalog = factory.LazyAttribute(lambda x: FAKER.random_int(min=0, max=1000000)) # pylint: disable=no-member
enable_data_sharing_consent = True
enforce_data_sharing_consent = EnterpriseCustomer.AT_ENROLLMENT

View File

@@ -144,7 +144,6 @@ class EnterpriseServiceMockMixin(object):
def mock_enterprise_learner_api(
self,
catalog_id=1,
entitlement_id=1,
learner_id=1,
enterprise_customer_uuid='cf246b88-d5f6-4908-a522-fc307e0b0c59',
@@ -163,7 +162,6 @@ class EnterpriseServiceMockMixin(object):
'enterprise_customer': {
'uuid': enterprise_customer_uuid,
'name': 'TestShib',
'catalog': catalog_id,
'active': True,
'site': {
'domain': 'example.com',