[1.5.X] Fixed lockups in jenkins, refs #19546.

Backport of ce580dd8ea from master.
This commit is contained in:
Florian Apolloner 2013-01-09 23:32:51 +01:00
parent 785ec24720
commit 1d3368b587
1 changed files with 2 additions and 1 deletions

View File

@ -283,7 +283,8 @@ class DummyBackendTest(unittest.TestCase):
class DeprecationDisplayTest(AdminScriptTestCase):
# tests for 19546
def setUp(self):
settings = {'INSTALLED_APPS': '("regressiontests.test_runner.deprecation_app",)' }
settings = {'INSTALLED_APPS': '("regressiontests.test_runner.deprecation_app",)',
'DATABASES': '{"default": {"ENGINE":"django.db.backends.sqlite3", "NAME":":memory:"}}' }
self.write_settings('settings.py', sdict=settings)
def tearDown(self):