summaryrefslogtreecommitdiff
path: root/tests/multiple_database
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2017-01-11 23:13:01 -0500
committerSimon Charette <charette.s@gmail.com>2017-01-13 08:50:03 -0500
commit91023d79ec70df9289271e63a67675ee51e7dea8 (patch)
tree752010f795e58624c28e9faed065938b11d814cb /tests/multiple_database
parentdc1193085da0c9a4d97f17e30f21695e53573472 (diff)
downloaddjango-91023d79ec70df9289271e63a67675ee51e7dea8.tar.gz
Removed available_apps on TestCase subclasses.
TestCase subclasses are wrapped in a transaction that prevents any data from being persisted between test runs andi thus don't require limiting the tables to be flushed to a subset of available apps like TransactionTestCase subclasses do.
Diffstat (limited to 'tests/multiple_database')
-rw-r--r--tests/multiple_database/tests.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/multiple_database/tests.py b/tests/multiple_database/tests.py
index 0a70b20dad..0ea3b6667e 100644
--- a/tests/multiple_database/tests.py
+++ b/tests/multiple_database/tests.py
@@ -1794,11 +1794,6 @@ class SyncOnlyDefaultDatabaseRouter(object):
class MigrateTestCase(TestCase):
- available_apps = [
- 'multiple_database',
- 'django.contrib.auth',
- 'django.contrib.contenttypes'
- ]
multi_db = True
def test_migrate_to_other_database(self):