diff options
| author | Tim Graham <timograham@gmail.com> | 2016-02-08 09:52:39 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-02-08 09:52:39 -0500 |
| commit | 7fa8aea8dd971df9c055dae11d9d95b07320d7af (patch) | |
| tree | 45c06bacdfdd31b8062c6916ed3426d6b445940c /tests/wsgi/tests.py | |
| parent | 10a162809fa4de3a56bb7f2d3cb12b6b82a6f826 (diff) | |
Made @override_settings(ROOT_URLCONF=...) consistent.
Diffstat (limited to 'tests/wsgi/tests.py')
| -rw-r--r-- | tests/wsgi/tests.py | 2 |
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): |
