summaryrefslogtreecommitdiff
path: root/tests/wsgi/tests.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-02-08 09:52:39 -0500
committerTim Graham <timograham@gmail.com>2016-02-08 09:52:39 -0500
commit7fa8aea8dd971df9c055dae11d9d95b07320d7af (patch)
tree45c06bacdfdd31b8062c6916ed3426d6b445940c /tests/wsgi/tests.py
parent10a162809fa4de3a56bb7f2d3cb12b6b82a6f826 (diff)
Made @override_settings(ROOT_URLCONF=...) consistent.
Diffstat (limited to 'tests/wsgi/tests.py')
-rw-r--r--tests/wsgi/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wsgi/tests.py b/tests/wsgi/tests.py
index ea7112a03d..4056ffda84 100644
--- a/tests/wsgi/tests.py
+++ b/tests/wsgi/tests.py
@@ -12,7 +12,7 @@ from django.test.client import RequestFactory
from django.utils import six
-@override_settings(ROOT_URLCONF="wsgi.urls")
+@override_settings(ROOT_URLCONF='wsgi.urls')
class WSGITest(TestCase):
def setUp(self):