aboutsummaryrefslogtreecommitdiffstats
path: root/tests/urls.py
diff options
context:
space:
mode:
authorDavid Cramer2011-08-25 11:18:34 -0700
committerDavid Cramer2011-08-25 11:18:34 -0700
commit5a3813d2bb4fb63d66b1b8a13edb8354b36a28b4 (patch)
tree2cd6e8a2d5b69c1973ac6b73d14122588fc66098 /tests/urls.py
parentc531148a4328cac1391359ff0e64d7db62ead255 (diff)
downloaddjango-debug-toolbar-5a3813d2bb4fb63d66b1b8a13edb8354b36a28b4.tar.bz2
Update urlpattern tests to reflect new behavior
Diffstat (limited to 'tests/urls.py')
-rw-r--r--tests/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/urls.py b/tests/urls.py
index d1cb07f..359fd8f 100644
--- a/tests/urls.py
+++ b/tests/urls.py
@@ -10,5 +10,6 @@ from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
+ # This pattern should be last to ensure tests still work
url(r'^execute_sql/$', 'tests.views.execute_sql'),
)