Fix an invalid database backend in unit test settings

This commit is contained in:
Matthew Jones 2016-11-03 16:09:17 -04:00
parent b0e40b6c29
commit 06dd5bb5d2

View File

@ -67,7 +67,7 @@ DATABASES = {
if is_testing(sys.argv):
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'ENGINE': 'transaction_hooks.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'awx.sqlite3'),
'TEST': {
# Test database cannot be :memory: for celery/inventory tests.