From 44c7c1aa414609961d1d4851b56f5e132d33430d Mon Sep 17 00:00:00 2001
From: Daniel Levy <daniell@aptivate.org>
Date: Wed, 10 Jun 2015 15:56:37 +0100
Subject: [PATCH] Fix warnings from jenkins

---
 django/website/local_settings.py.jenkins | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/django/website/local_settings.py.jenkins b/django/website/local_settings.py.jenkins
index 39f824a1..570d4ded 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.
-- 
GitLab