aboutsummaryrefslogtreecommitdiffstats
path: root/tests/urls.py
diff options
context:
space:
mode:
authorAymeric Augustin2013-11-09 20:03:47 +0100
committerAymeric Augustin2013-11-10 10:39:42 +0100
commitc4e833ad77f21419b8d8239279b4bb162d01fd8f (patch)
tree5b17d28bfef86aaaf968ce6b36ab0d84c3f714bb /tests/urls.py
parenta29bbc7cfcef52af29960f2a2f3d53e9c0b0015d (diff)
downloaddjango-debug-toolbar-c4e833ad77f21419b8d8239279b4bb162d01fd8f.tar.bz2
Move a test specific to the template panel in its module.
Diffstat (limited to 'tests/urls.py')
-rw-r--r--tests/urls.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/urls.py b/tests/urls.py
index 80a68d9..854f0ed 100644
--- a/tests/urls.py
+++ b/tests/urls.py
@@ -16,7 +16,6 @@ urlpatterns = patterns('tests.views', # noqa
url(r'^resolving2/(?P<arg1>.+)/(?P<arg2>.+)/$', 'resolving_view'),
url(r'^resolving3/(.+)/$', 'resolving_view', {'arg2': 'default'}),
url(r'^regular/(?P<title>.*)/$', 'regular_view'),
- url(r'^non_ascii_context/$', 'non_ascii_context'),
url(r'^non_ascii_request/$', 'regular_view', {'title': NonAsciiRepr()}),
url(r'^new_user/$', 'new_user'),
url(r'^execute_sql/$', 'execute_sql'),