diff --git a/program/tests/factories.py b/program/tests/factories.py index a28ec0595d5ebe034ea6be0665d0e831a558f336..746ffa948525b349ff85b700023b329f2a5bea5d 100644 --- a/program/tests/factories.py +++ b/program/tests/factories.py @@ -9,12 +9,12 @@ from django.utils.timezone import now from program.models import ( CBA, Category, - ContentLicense, Episode, FundingCategory, Image, Language, License, + Licensing, LinkType, Media, MediaSource, @@ -124,9 +124,9 @@ class LicenseFactory(DjangoModelFactory): name = Sequence(lambda n: "license %d" % n) -class ContentLicenseFactory(DjangoModelFactory): +class LicensingFactory(DjangoModelFactory): class Meta: - model = ContentLicense + model = Licensing class EpisodeFactory(DjangoModelFactory):