ENT-854 Remove references to old EnterpriseCustomerReportingConfiguration model fields.

This commit is contained in:
Douglas Hall
2018-01-29 11:10:23 -05:00
parent 3f3a3cfd2f
commit 538b073ee4
2 changed files with 8 additions and 2 deletions

View File

@@ -243,4 +243,10 @@ class MigrationTests(TestCase):
out = StringIO()
call_command('makemigrations', dry_run=True, verbosity=3, stdout=out)
output = out.getvalue()
self.assertIn('No changes detected', output)
# Temporarily disable this check so we can remove
# the EnterpriseCustomerReportingConfiguration fields.
# We will restore this check once the code referencing
# these fields has been deleted/released and a migration
# for field removal has been added.
if 'Remove field' not in output:
self.assertIn('No changes detected', output)