fix test db name (#27104)

This commit is contained in:
Paul Marillonnet 2018-10-08 16:40:21 +02:00
parent 1b13b3a422
commit 7e9377c8fc
1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@ LANGUAGE_CODE = 'en-US'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.' + os.environ.get('DB_ENGINE', 'sqlite3'),
'NAME': 'mellon.sqlite3',
'NAME': 'fargo.sqlite3',
'TEST': {
'NAME': 'mellon-test-' + os.environ.get('DB_ENGINE', 'sqlite3'),
'NAME': 'fargo-test-' + os.environ.get('DB_ENGINE', 'sqlite3'),
},
}
}