summaryrefslogtreecommitdiff
path: root/tests/auth_tests/urls.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-09-01 10:30:32 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 19:31:10 -0400
commitf1761e3fefadd9730e8b17c0995e1317c58bd10c (patch)
tree5a506ea142f083b7d4aa672650664754ed6c8363 /tests/auth_tests/urls.py
parentfd6a299cd06fac615ccb9006df0dd98cd8461cc5 (diff)
Refs #21648 -- Removed is_admin_site option from password_reset() view.
Per deprecation timeline.
Diffstat (limited to 'tests/auth_tests/urls.py')
-rw-r--r--tests/auth_tests/urls.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/auth_tests/urls.py b/tests/auth_tests/urls.py
index 0c43123f87..bc68c3f216 100644
--- a/tests/auth_tests/urls.py
+++ b/tests/auth_tests/urls.py
@@ -85,7 +85,6 @@ urlpatterns = auth_urlpatterns + [
dict(post_reset_redirect='password_reset')),
url(r'^password_change/custom/$', views.password_change, dict(post_change_redirect='/custom/')),
url(r'^password_change/custom/named/$', views.password_change, dict(post_change_redirect='password_reset')),
- url(r'^admin_password_reset/$', views.password_reset, dict(is_admin_site=True)),
url(r'^login_required/$', login_required(views.password_reset)),
url(r'^login_required_login_url/$', login_required(views.password_reset, login_url='/somewhere/')),