Commit 23d3450d authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #12378 -- Removed some tests made redundant by feature deprecation....

Fixed #12378 -- Removed some tests made redundant by feature deprecation. Thanks to jcd for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12418 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent cc40651f
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -127,7 +127,3 @@ class AdminForeignKeyWidgetChangeList(DjangoTestCase):
    def test_changelist_foreignkey(self):
        response = self.client.get('%s/admin_widgets/car/' % self.admin_root)
        self.failUnless('%s/auth/user/add/' % self.admin_root in response.content)

class OldAdminForeignKeyWidgetChangeList(AdminForeignKeyWidgetChangeList):
    urls = 'regressiontests.admin_widgets.urls2'
    admin_root = '/deep/down/admin'
+0 −7
Original line number Diff line number Diff line

from django.conf.urls.defaults import *
import widgetadmin

urlpatterns = patterns('',
    (r'^deep/down/admin/', include(widgetadmin.site.urls)),
)