Commit 7d4a3991 authored by Luke Plant's avatar Luke Plant
Browse files

Fixed a test setup and isolation bug that was causing PasswordResetTest to...

Fixed a test setup and isolation bug that was causing PasswordResetTest to fail when run individually

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14455 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent efc5384a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ def remote_user_auth_view(request):
    return HttpResponse(t.render(c))

# special urls for auth test cases
urlpatterns += patterns('',
urlpatterns = urlpatterns + patterns('',
    (r'^logout/custom_query/$', 'django.contrib.auth.views.logout', dict(redirect_field_name='follow')),
    (r'^logout/next_page/$', 'django.contrib.auth.views.logout', dict(next_page='/somewhere/')),
    (r'^remote_user/$', remote_user_auth_view),
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ class AuthViewsTestCase(TestCase):
    Helper base class for all the follow test cases.
    """
    fixtures = ['authtestdata.json']
    urls = 'django.contrib.auth.urls'
    urls = 'django.contrib.auth.tests.urls'

    def setUp(self):
        self.old_LANGUAGES = settings.LANGUAGES