diff options
Diffstat (limited to 'tests/sites_tests/tests.py')
| -rw-r--r-- | tests/sites_tests/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sites_tests/tests.py b/tests/sites_tests/tests.py index c5e20b4549..500a422b21 100644 --- a/tests/sites_tests/tests.py +++ b/tests/sites_tests/tests.py @@ -18,7 +18,7 @@ from django.test.utils import captured_stdout @modify_settings(INSTALLED_APPS={'append': 'django.contrib.sites'}) class SitesFrameworkTests(TestCase): - multi_db = True + databases = {'default', 'other'} @classmethod def setUpTestData(cls): @@ -236,7 +236,7 @@ class JustOtherRouter: @modify_settings(INSTALLED_APPS={'append': 'django.contrib.sites'}) class CreateDefaultSiteTests(TestCase): - multi_db = True + databases = {'default', 'other'} @classmethod def setUpTestData(cls): |
