aboutsummaryrefslogtreecommitdiffstats
path: root/src/shorturls/testsettings.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/shorturls/testsettings.py')
-rw-r--r--src/shorturls/testsettings.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shorturls/testsettings.py b/src/shorturls/testsettings.py
index 408ea8b..1f66f84 100644
--- a/src/shorturls/testsettings.py
+++ b/src/shorturls/testsettings.py
@@ -1,6 +1,7 @@
import os
DEBUG = TEMPLATE_DEBUG = True
+SECRET_KEY = '123'
# For Pre-Django 1.3
DATABASE_ENGINE = 'sqlite3'
@@ -15,4 +16,4 @@ DATABASES = {
INSTALLED_APPS = ['shorturls']
ROOT_URLCONF = ['shorturls.urls']
-TEMPLATE_DIRS = os.path.join(os.path.dirname(__file__), 'tests', 'templates')
+TEMPLATE_DIRS = (os.path.join(os.path.dirname(__file__), 'tests', 'templates'),)