summaryrefslogtreecommitdiff
path: root/tests/urls.py
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2010-10-21 03:16:41 +0000
committerJannis Leidel <jannis@leidel.info>2010-10-21 03:16:41 +0000
commit1c4868f4c15f41c7840129d0f04c87f65aa94367 (patch)
treea69254ff87b9526b0924471be9cc37aeba5373fe /tests/urls.py
parenta28823e3643b489b563bc98e38365e43e3fb78bd (diff)
downloaddjango-1c4868f4c15f41c7840129d0f04c87f65aa94367.tar.gz
Fixed #14507 -- Corrected the logic of the URL helpers and view of staticfiles to actual work like documented (only when settings.DEBUG is True). Thanks for the report and initial patch, mbi.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14306 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/urls.py')
-rw-r--r--tests/urls.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/urls.py b/tests/urls.py
index 573a0aafb7..01d6408c5a 100644
--- a/tests/urls.py
+++ b/tests/urls.py
@@ -41,7 +41,4 @@ urlpatterns = patterns('',
# special headers views
(r'special_headers/', include('regressiontests.special_headers.urls')),
-
- # static files handling
- (r'^', include('regressiontests.staticfiles_tests.urls.default')),
)