summaryrefslogtreecommitdiff
path: root/tests/context_processors/urls.py
diff options
context:
space:
mode:
authorBas Peschier <bpeschier@fizzgig.nl>2014-08-27 10:41:12 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-08-30 13:27:56 +0200
commiteacf244506d8b7e6dd6483834ea122fec864da85 (patch)
tree7a6889f60a45590b1659faae4a0199178c59fc40 /tests/context_processors/urls.py
parent6613ea6e3ff2597c04db35ef885562e95c1ef012 (diff)
Converted sql_queries into a lazily evaluated list.
Fixed #23364. Thanks Markush2010 for the report.
Diffstat (limited to 'tests/context_processors/urls.py')
-rw-r--r--tests/context_processors/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/context_processors/urls.py b/tests/context_processors/urls.py
index a7c0d1b4b0..f68720d581 100644
--- a/tests/context_processors/urls.py
+++ b/tests/context_processors/urls.py
@@ -5,4 +5,5 @@ from . import views
urlpatterns = [
url(r'^request_attrs/$', views.request_processor),
+ url(r'^debug/$', views.debug_processor),
]