summaryrefslogtreecommitdiff
path: root/tests/context_processors
diff options
context:
space:
mode:
authordarkryder <sambhav13085@iiitd.ac.in>2015-01-21 22:25:57 +0530
committerTim Graham <timograham@gmail.com>2015-02-03 14:59:45 -0500
commit9ec8aa5e5d42ac4529846f7eae6bf4982800abff (patch)
tree6a1195ff3831031f8207e18e4dcf69015fb4c50c /tests/context_processors
parent570912a97d5051fa3aeacd9d16c3be9afcf92198 (diff)
Fixed #24149 -- Normalized tuple settings to lists.
Diffstat (limited to 'tests/context_processors')
-rw-r--r--tests/context_processors/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/context_processors/tests.py b/tests/context_processors/tests.py
index d7c7390189..f6c6600402 100644
--- a/tests/context_processors/tests.py
+++ b/tests/context_processors/tests.py
@@ -48,7 +48,7 @@ class RequestContextProcessorTests(TestCase):
@override_settings(
DEBUG=True,
- INTERNAL_IPS=('127.0.0.1',),
+ INTERNAL_IPS=['127.0.0.1'],
ROOT_URLCONF='context_processors.urls',
TEMPLATES=[{
'BACKEND': 'django.template.backends.django.DjangoTemplates',