summaryrefslogtreecommitdiff
path: root/tests/admin_utils
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/admin_utils
parent10a162809fa4de3a56bb7f2d3cb12b6b82a6f826 (diff)
Made @override_settings(ROOT_URLCONF=...) consistent.
Diffstat (limited to 'tests/admin_utils')
-rw-r--r--tests/admin_utils/test_logentry.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_utils/test_logentry.py b/tests/admin_utils/test_logentry.py
index 1442c8f2c3..77983730af 100644
--- a/tests/admin_utils/test_logentry.py
+++ b/tests/admin_utils/test_logentry.py
@@ -17,7 +17,7 @@ from django.utils.html import escape
from .models import Article, ArticleProxy, Site
-@override_settings(ROOT_URLCONF="admin_utils.urls")
+@override_settings(ROOT_URLCONF='admin_utils.urls')
class LogEntryTests(TestCase):
def setUp(self):
self.user = User.objects.create_superuser(username='super', password='secret', email='super@example.com')