diff options
| author | Simon Charette <charette.s@gmail.com> | 2018-07-12 00:12:20 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2019-01-10 19:11:21 -0500 |
| commit | 8c775391b78b2a4a2b57c5e89ed4888f36aada4b (patch) | |
| tree | 3daeb3ef031be73079bd56e7c83f0f8f974d8f60 /tests/test_runner/tests.py | |
| parent | 647be06538474078ac79c1338f02f5d9bc56a79b (diff) | |
Refs #28478 -- Deprecated TestCase's allow_database_queries and multi_db in favor of databases.
Diffstat (limited to 'tests/test_runner/tests.py')
| -rw-r--r-- | tests/test_runner/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_runner/tests.py b/tests/test_runner/tests.py index 477398da20..43c605eba6 100644 --- a/tests/test_runner/tests.py +++ b/tests/test_runner/tests.py @@ -241,8 +241,8 @@ class Ticket17477RegressionTests(AdminScriptTestCase): class SQLiteInMemoryTestDbs(TransactionTestCase): - multi_db = True available_apps = ['test_runner'] + databases = {'default', 'other'} @unittest.skipUnless(all(db.connections[conn].vendor == 'sqlite' for conn in db.connections), "This is an sqlite-specific issue") |
