Refs #25388 -- Used in-memory database in test_disable_migrations.

This commit is contained in:
Berker Peksag 2016-03-23 16:13:50 +02:00 committed by Tim Graham
parent a52a531a8b
commit 14e6823d09
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ class LoaderTests(TestCase):
def test_disable_migrations(self):
connections = ConnectionHandler({
'default': {
'NAME': 'dummy',
'NAME': ':memory:',
'ENGINE': 'django.db.backends.sqlite3',
'TEST': {
'MIGRATE': False,