Fix flaky test in Catalog Integration Configuration Model

This commit is contained in:
Simon Chen
2020-03-12 21:49:41 -04:00
parent 2d845385e9
commit a47f4d7570

View File

@@ -5,11 +5,13 @@ Test cases for catalog_integrations command.
from django.test import TestCase
from django.core.management import call_command, CommandError
from openedx.core.djangolib.testing.utils import CacheIsolationTestCase
from openedx.core.djangoapps.catalog.models import CatalogIntegration
from openedx.core.djangoapps.catalog.tests.mixins import CatalogIntegrationMixin
class TestCreateCatalogIntegrations(CatalogIntegrationMixin, TestCase):
class TestCreateCatalogIntegrations(CatalogIntegrationMixin, CacheIsolationTestCase):
""" Test the create_catalog_integrations command """
def test_without_required(self):