diff --git a/django/website/local_settings.py.jenkins b/django/website/local_settings.py.jenkins
index 39f824a13b0ea1fcef20121c946afc34809b7bf7..924477bb791a3ef1bbbce59e78f470a3b228ec7d 100644
--- a/django/website/local_settings.py.jenkins
+++ b/django/website/local_settings.py.jenkins
@@ -11,8 +11,10 @@ DATABASES = {
     'default': {
         'ENGINE': 'django.db.backends.mysql',  # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
         'NAME': 'jenkins_internewshid', # Or path to database file if using sqlite3.
-        'TEST_NAME': 'jenkins_internewshid', # Or path to database file if using sqlite3.
-        'TEST_MIRROR': 'default',  # trick django into not creating the default test database
+        'TEST': {
+            'NAME': 'jenkins_internewshid', # Or path to database file if using sqlite3.
+            'MIRROR': 'default',  # trick django into not creating the default test database
+         }
         'USER': 'internewshid',                      # Not used with sqlite3.
         'PASSWORD': private_settings.DB_PASSWORD,                  # Not used with sqlite3.
         'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.