tests: fix database name (#45105)

This commit is contained in:
Frédéric Péters 2020-07-17 08:02:44 +02:00
parent bb7858690b
commit 20ba33c7b4
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,6 @@ REST_FRAMEWORK['DEFAULT_AUTHENTICATION_CLASSES'] = ['rest_framework.authenticati
DATABASES = {
'default': {
'ENGINE': os.environ.get('DB_ENGINE', 'django.db.backends.sqlite3'),
'TEST': {'NAME': 'chrono-test-%s' % os.environ.get("BRANCH_NAME", "").replace('/', '-')[:63],},
'TEST': {'NAME': 'corbo-test-%s' % os.environ.get("BRANCH_NAME", "").replace('/', '-')[:63],},
}
}