diff --git a/test_utils/factories.py b/test_utils/factories.py index e0a2c5e2ec..d91fbeb301 100644 --- a/test_utils/factories.py +++ b/test_utils/factories.py @@ -869,6 +869,7 @@ class Meta: model = BlackboardGlobalConfiguration app_key = factory.LazyAttribute(lambda x: FAKER.random_int(min=1)) + app_secret = factory.LazyAttribute(lambda x: FAKER.uuid4()) decrypted_app_secret = factory.LazyAttribute(lambda x: FAKER.uuid4()) @@ -889,6 +890,8 @@ class Meta: enterprise_customer = factory.SubFactory(EnterpriseCustomerFactory) active = True blackboard_base_url = factory.LazyAttribute(lambda x: FAKER.url()) + client_id = factory.LazyAttribute(lambda x: FAKER.random_int(min=1)) + client_secret = factory.LazyAttribute(lambda x: FAKER.uuid4()) decrypted_client_id = factory.LazyAttribute(lambda x: FAKER.random_int(min=1)) decrypted_client_secret = factory.LazyAttribute(lambda x: FAKER.uuid4()) refresh_token = factory.LazyAttribute(lambda x: FAKER.uuid4())