diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-02-27 08:27:42 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-02-27 08:27:42 +0000 |
commit | 84f6f9e552a14345ce5ea2611ee39636be9ff60d (patch) | |
tree | 96dcc6e06ed36b16862ecd06d772732339173eee /ctrack/organisations/management/commands | |
parent | 77572ddf5122947d98a26082d774d6d2c0a74d16 (diff) |
renamed CAFFileStore to FileStore
Diffstat (limited to '')
-rw-r--r-- | ctrack/organisations/management/commands/populate_db.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ctrack/organisations/management/commands/populate_db.py b/ctrack/organisations/management/commands/populate_db.py index bcecc1a..ea81dfe 100644 --- a/ctrack/organisations/management/commands/populate_db.py +++ b/ctrack/organisations/management/commands/populate_db.py @@ -3,7 +3,7 @@ from random import randint, choice from django.core.management import BaseCommand from django.core.management import CommandParser -from ctrack.caf.tests.factories import GradingFactory, CAFFileStoreFactory +from ctrack.caf.tests.factories import GradingFactory, FileStoreFactory from ctrack.organisations.models import AddressType from ctrack.organisations.models import Mode from ctrack.organisations.models import Submode @@ -114,4 +114,4 @@ class Command(BaseCommand): GradingFactory.create(descriptor=g, type="CONFIDENCE") # File store - fs = CAFFileStoreFactory.create(physical_location_organistion=orgs[1]) + fs = FileStoreFactory.create(physical_location_organistion=orgs[1]) |