summaryrefslogtreecommitdiff
path: root/tests/urls.py
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2007-03-01 13:11:08 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2007-03-01 13:11:08 +0000
commitf2582eb972303978a5fa115825a646a230624116 (patch)
tree3f0869ae0cf47590feef9ef12ed37a3fa9d03efd /tests/urls.py
parentf54777406d9b0a1643db49baa20367e27bef4b2e (diff)
Fixes #2333 -- Added test fixtures framework.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4659 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/urls.py')
-rw-r--r--tests/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/urls.py b/tests/urls.py
index 9fefd93624..9dcdca944e 100644
--- a/tests/urls.py
+++ b/tests/urls.py
@@ -6,7 +6,7 @@ urlpatterns = patterns('',
# Always provide the auth system login and logout views
(r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'login.html'}),
- (r'^accounts/logout/$', 'django.contrib.auth.views.login'),
+ (r'^accounts/logout/$', 'django.contrib.auth.views.logout'),
# test urlconf for {% url %} template tag
(r'^url_tag/', include('regressiontests.templates.urls')),